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

Unified Diff: fuzzer/res/imp/fuzzer-count-sk.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/go/fuzzer-fe/main.go ('k') | fuzzer/res/imp/fuzzer-count-sk-demo.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.html
diff --git a/fuzzer/res/imp/fuzzer-count-sk.html b/fuzzer/res/imp/fuzzer-count-sk.html
deleted file mode 100644
index 5d6445187f93c448f7335bf092055e673f574584..0000000000000000000000000000000000000000
--- a/fuzzer/res/imp/fuzzer-count-sk.html
+++ /dev/null
@@ -1,56 +0,0 @@
-<!-- The <fuzzer-count-sk> element displays the counts of the bad/grey fuzzes.
-
- Attributes:
- None
-
- Events:
- None
-
- Methods:
- None
--->
-<link rel="import" href="/res/imp/bower_components/iron-ajax/iron-ajax.html">
-<link rel="import" href="/res/imp/bower_components/iron-flex-layout/iron-flex-layout.html">
-<dom-module id="fuzzer-count-sk">
- <template>
- <style>
- #box {
- max-width:inherit;
- border: 1px solid black;
- padding: 5px;
- border-radius:8px;
- @apply(--layout-horizontal);
- @apply(--layout-wrap);
- }
- .count {
- flex-grow:1;
- }
- </style>
- <div id="box">
- <span class="count">New Bad Fuzzes: {{_count.thisBadCount}}</span>
- <span class="count">New Grey Fuzzes: {{_count.thisGreyCount}}</span>
- <span class="count">Total Bad Fuzzes: {{_count.totalBadCount}}</span>
- <span class="count">Total Grey Fuzzes: {{_count.totalGreyCount}}</span>
- </div>
- <iron-ajax auto url="/fuzz_count" handle-as="json" last-response="{{_count}}"></iron-ajax>
- </template>
- <script>
- Polymer({
- is: "fuzzer-count-sk",
-
- properties: {
- _count: {
- type: Object,
- value: function() {
- return {
- totalBadCount: 0,
- totalGreyCount: 0,
- thisBadCount: 0,
- thisGreyCount: 0
- }
- }
- }
- }
- });
- </script>
-</dom-module>
« no previous file with comments | « fuzzer/go/fuzzer-fe/main.go ('k') | fuzzer/res/imp/fuzzer-count-sk-demo.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698