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

Side by Side Diff: sky/benchmarks/parser/parser.sky

Issue 1216823002: Remove sky/benchmarks (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 years, 5 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 | « sky/benchmarks/layout/simple-blocks.sky ('k') | sky/benchmarks/resources/fakesky.dart » ('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 <import src="../resources/runner.sky" as="PerfRunner" />
2 <script>
3 var specURL = "resources/html5.html";
4 var cacheBust = 100;
5
6 var runner = new PerfRunner({
7 iterations: 10,
8 unit: 'ms',
9 });
10
11 runner.runAsync(function(done) {
12 var element = document.createElement("import");
13
14 element.addEventListener("load", function() {
15 element.remove();
16 done();
17 });
18
19 element.setAttribute("src", specURL + "?cacheBust=" + cacheBust++);
20 document.documentElement.appendChild(element);
21 });
22 </script>
OLDNEW
« no previous file with comments | « sky/benchmarks/layout/simple-blocks.sky ('k') | sky/benchmarks/resources/fakesky.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698