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

Unified Diff: fuzzer/res/imp/fuzzer-count-sk-demo.html

Issue 1676593002: Remove old count and overview fuzzer elements (Closed) Base URL: https://skia.googlesource.com/buildbot@filter-ui
Patch Set: merged in above Created 4 years, 10 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 | « fuzzer/res/imp/fuzzer-count-sk.html ('k') | fuzzer/templates/overview.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: fuzzer/res/imp/fuzzer-count-sk-demo.html
diff --git a/fuzzer/res/imp/fuzzer-count-sk-demo.html b/fuzzer/res/imp/fuzzer-count-sk-demo.html
deleted file mode 100644
index be80e0858582d3b0d65afb0b81eff8eb4cbf23ac..0000000000000000000000000000000000000000
--- a/fuzzer/res/imp/fuzzer-count-sk-demo.html
+++ /dev/null
@@ -1,35 +0,0 @@
-<html>
-<head>
- <title>fuzzer-count-sk demo</title>
- <meta charset="utf-8">
- <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
- <meta name="viewport" content="width=device-width, minimum-scale=1.0, initial-scale=1, user-scalable=yes">
- <script src="/res/imp/bower_components/webcomponentsjs/webcomponents-lite.js"></script>
- <script src="/res/imp/sinon-server-1.17.2.js"></script>
- <script>
- var server = sinon.fakeServer.create();
- server.autoRespond = true;
- var responses = [{
- "totalBadCount": 8322,
- "totalGreyCount": 1728,
- "thisBadCount": 180,
- "thisGreyCount": 89
- }];
- var counter = 0;
-
- server.respondWith("GET", "/fuzz_count", function(request) {
- request.respond(200, {"Content-Type":"application/json"},
- JSON.stringify(responses[counter%responses.length]));
- counter++;
- });
- </script>
- <link rel="import" href="fuzzer-count-sk.html">
-</head>
-<body>
- <h1>fuzzer-count-sk demo wide</h1>
- <fuzzer-count-sk style="max-width:400px"></fuzzer-count-sk>
-
- <h1>fuzzer-count-sk demo small</h1>
- <fuzzer-count-sk style="max-width:200px"></fuzzer-count-sk>
-</body>
-</html>
« no previous file with comments | « fuzzer/res/imp/fuzzer-count-sk.html ('k') | fuzzer/templates/overview.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698