OLD | NEW |
---|---|
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 Loading... | |
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> |
OLD | NEW |