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

Side by Side Diff: third_party/WebKit/PerformanceTests/Layout/SimpleTextPathLineLayout.html

Issue 1557953002: Revert unfinished work of "full-frame-measurement" (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@PerfPaint
Patch Set: Created 4 years, 11 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
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html> 2 <html>
3 <head> 3 <head>
4 <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> 4 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
5 <title>Simple Path performance test</title> 5 <title>Simple Path performance test</title>
6 <script src="../resources/runner.js"></script> 6 <script src="../resources/runner.js"></script>
7 </head> 7 </head>
8 <body> 8 <body>
9 <pre id="log"></pre> 9 <pre id="log"></pre>
10 <div id="target"> 10 <div id="target">
(...skipping 13 matching lines...) Expand all
24 At pri vide vivendo, essent alienum ad est. Id praesent hendrerit eam, id usu qu is dicunt, cibo ludus dolorum et eam. Meis complectitur vim ex. Nec te dolorem l obortis. Pri esse quando ullamcorper an, nec rebum aeterno ea. Te quo decore dis sentiet, mea an partiendo concludaturque vituperatoribus, nam quot dicam noster ad. 24 At pri vide vivendo, essent alienum ad est. Id praesent hendrerit eam, id usu qu is dicunt, cibo ludus dolorum et eam. Meis complectitur vim ex. Nec te dolorem l obortis. Pri esse quando ullamcorper an, nec rebum aeterno ea. Te quo decore dis sentiet, mea an partiendo concludaturque vituperatoribus, nam quot dicam noster ad.
25 Cibo tollit perpetua eos an, eu sale expetendis mea, nam at assum convenire nece ssitatibus. Est cu posse labores, ad postea alterum mea. Mei te salutatus vulput ate, dolore maiestatis id per, sit autem nemore eu. Tempor laoreet suavitate sea at. Soleat intellegebat quo te, pro at nemore efficiantur. Pro omnis latine civ ibus ei, quo an quem paulo audiam. Ea enim ancillae lucilius cum.</p> 25 Cibo tollit perpetua eos an, eu sale expetendis mea, nam at assum convenire nece ssitatibus. Est cu posse labores, ad postea alterum mea. Mei te salutatus vulput ate, dolore maiestatis id per, sit autem nemore eu. Tempor laoreet suavitate sea at. Soleat intellegebat quo te, pro at nemore efficiantur. Pro omnis latine civ ibus ei, quo an quem paulo audiam. Ea enim ancillae lucilius cum.</p>
26 </div> 26 </div>
27 <script> 27 <script>
28 var target = document.getElementById("target"); 28 var target = document.getElementById("target");
29 var style = target.style; 29 var style = target.style;
30 30
31 function test() { 31 function test() {
32 style.display = "block"; 32 style.display = "block";
33 style.width = "200px"; 33 style.width = "200px";
34 PerfTestRunner.forceLayoutOrFullFrame(); 34 PerfTestRunner.forceLayout();
35 style.width = "200px"; 35 style.width = "200px";
36 PerfTestRunner.forceLayoutOrFullFrame(); 36 PerfTestRunner.forceLayout();
37 style.width = "200px"; 37 style.width = "200px";
38 PerfTestRunner.forceLayoutOrFullFrame(); 38 PerfTestRunner.forceLayout();
39 style.display = "none"; 39 style.display = "none";
40 } 40 }
41 41
42 PerfTestRunner.measureRunsPerSecond({ 42 PerfTestRunner.measureRunsPerSecond({
43 description: "Measures performance of layout on simple Latin charact ers.", 43 description: "Measures performance of layout on simple Latin charact ers.",
44 run: test 44 run: test
45 }); 45 });
46 </script> 46 </script>
47 </body> 47 </body>
48 </html> 48 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698