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

Side by Side 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 unified diff | 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 »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 <html>
2 <head>
3 <title>fuzzer-count-sk demo</title>
4 <meta charset="utf-8">
5 <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
6 <meta name="viewport" content="width=device-width, minimum-scale=1.0, initial- scale=1, user-scalable=yes">
7 <script src="/res/imp/bower_components/webcomponentsjs/webcomponents-lite.js"> </script>
8 <script src="/res/imp/sinon-server-1.17.2.js"></script>
9 <script>
10 var server = sinon.fakeServer.create();
11 server.autoRespond = true;
12 var responses = [{
13 "totalBadCount": 8322,
14 "totalGreyCount": 1728,
15 "thisBadCount": 180,
16 "thisGreyCount": 89
17 }];
18 var counter = 0;
19
20 server.respondWith("GET", "/fuzz_count", function(request) {
21 request.respond(200, {"Content-Type":"application/json"},
22 JSON.stringify(responses[counter%responses.length]));
23 counter++;
24 });
25 </script>
26 <link rel="import" href="fuzzer-count-sk.html">
27 </head>
28 <body>
29 <h1>fuzzer-count-sk demo wide</h1>
30 <fuzzer-count-sk style="max-width:400px"></fuzzer-count-sk>
31
32 <h1>fuzzer-count-sk demo small</h1>
33 <fuzzer-count-sk style="max-width:200px"></fuzzer-count-sk>
34 </body>
35 </html>
OLDNEW
« 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