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

Unified 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, 6 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 side-by-side diff with in-line comments
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 »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sky/benchmarks/parser/parser.sky
diff --git a/sky/benchmarks/parser/parser.sky b/sky/benchmarks/parser/parser.sky
deleted file mode 100644
index 36626c42e3da8516a86f1801191128b02b0b38e9..0000000000000000000000000000000000000000
--- a/sky/benchmarks/parser/parser.sky
+++ /dev/null
@@ -1,22 +0,0 @@
-<import src="../resources/runner.sky" as="PerfRunner" />
-<script>
-var specURL = "resources/html5.html";
-var cacheBust = 100;
-
-var runner = new PerfRunner({
- iterations: 10,
- unit: 'ms',
-});
-
-runner.runAsync(function(done) {
- var element = document.createElement("import");
-
- element.addEventListener("load", function() {
- element.remove();
- done();
- });
-
- element.setAttribute("src", specURL + "?cacheBust=" + cacheBust++);
- document.documentElement.appendChild(element);
-});
-</script>
« 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