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

Side by Side Diff: PerformanceTests/Layout/line-layout-line-height.html

Issue 478003002: Fill in descriptions on relevant blink_perf tests (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: alancutter nits Created 6 years, 2 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 | « PerformanceTests/Layout/line-layout.html ('k') | PerformanceTests/Parser/css-parser-yui.html » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html> 2 <html>
3 <head> 3 <head>
4 <title>Line height calculation performance test</title> 4 <title>Line height calculation performance test</title>
5 <script src="../resources/runner.js"></script> 5 <script src="../resources/runner.js"></script>
6 </head> 6 </head>
7 <body> 7 <body>
8 <pre id="log"></pre> 8 <pre id="log"></pre>
9 <div id="target" style="width: 300px; display: none;"> 9 <div id="target" style="width: 300px; display: none;">
10 </div> 10 </div>
(...skipping 11 matching lines...) Expand all
22 style.display = "block"; 22 style.display = "block";
23 style.width = "280px"; 23 style.width = "280px";
24 target.offsetLeft; 24 target.offsetLeft;
25 style.width = "300px"; 25 style.width = "300px";
26 target.offsetLeft; 26 target.offsetLeft;
27 style.width = "290px"; 27 style.width = "290px";
28 target.offsetLeft; 28 target.offsetLeft;
29 style.display = "none"; 29 style.display = "none";
30 } 30 }
31 31
32 PerfTestRunner.measureTime({ run: test }); 32 PerfTestRunner.measureTime({
33 description: "Measures performance of line-height calculation in lay out.",
34 run: test
35 });
33 </script> 36 </script>
34 </body> 37 </body>
35 </html> 38 </html>
OLDNEW
« no previous file with comments | « PerformanceTests/Layout/line-layout.html ('k') | PerformanceTests/Parser/css-parser-yui.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698