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

Side by Side Diff: sky/benchmarks/layout/simple-blocks.sky

Issue 702603005: Add a sketch of a test_perf script (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 6 years, 1 month 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 <sky> 1 <sky>
2 <import src="../resources/runner.sky" as="PerfRunner" /> 2 <import src="../resources/runner.sky" as="PerfRunner" />
3 <style> 3 <style>
4 div { 4 div {
5 height: 10px; 5 height: 10px;
6 } 6 }
7 span { 7 span {
8 display: inline; 8 display: inline;
9 } 9 }
10 </style> 10 </style>
(...skipping 24 matching lines...) Expand all
35 iterations: 10, 35 iterations: 10,
36 unit: 'ms', 36 unit: 'ms',
37 }); 37 });
38 38
39 runner.runAsync(function(done) { 39 runner.runAsync(function(done) {
40 b.offsetHeight; 40 b.offsetHeight;
41 done(); 41 done();
42 }); 42 });
43 </script> 43 </script>
44 </sky> 44 </sky>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698