Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(281)

Side by Side Diff: third_party/WebKit/PerformanceTests/Layout/long-line-nowrap.html

Issue 2284113003: Add performance tests for long words/lines (Closed)
Patch Set: eae review Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | third_party/WebKit/PerformanceTests/Layout/long-line-nowrap-collapse.html » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <script src="../resources/runner.js"></script>
3 <script src="resources/line-layout-perf-test.js"></script>
4 <style>
5 #container {
6 width: 400px;
7 white-space: nowrap;
8 }
9 </style>
10 <body onload="run()">
11 <div id="container"></div>
12 <script>
13 'use strict';
14
15 function run() {
16 var test = new LineLayoutPerfTest(container);
17 test.spanCount = 0;
18 test.lineCount = 10000;
19 test.run('Measures performance of "white-space: nowrap".');
20 }
21 </script>
22 </body>
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/PerformanceTests/Layout/long-line-nowrap-collapse.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698