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

Unified Diff: fuzzer/res/imp/fuzzsummary.html

Issue 1144163010: Getting started on the fuzzer web front end. (Closed) Base URL: https://skia.googlesource.com/buildbot@master
Patch Set: Frontend can now retrieve/show the hashes of existing passed/failed fuzzes. Good place to land. Created 5 years, 7 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
Index: fuzzer/res/imp/fuzzsummary.html
diff --git a/fuzzer/res/imp/fuzzsummary.html b/fuzzer/res/imp/fuzzsummary.html
new file mode 100644
index 0000000000000000000000000000000000000000..96af381b0c5367af3fb449b4e387e59917c960fd
--- /dev/null
+++ b/fuzzer/res/imp/fuzzsummary.html
@@ -0,0 +1,23 @@
+<!-- The <fuzz-summary-sk> element displays a summary of a given fuzz hash.
+
+Attributes:
+
+ hash - the MD5 hash of the fuzz's source code
+
+-->
+
+<polymer-element name="fuzz-summary-sk">
+ <template>
+ <div>{{hash}}</div>
+ </template>
+ <script>
+ Polymer({
+ publish: {
+ hash: {
+ value: "",
+ reflect: true,
+ }
+ }
+ });
+ </script>
+</polymer-element>

Powered by Google App Engine
This is Rietveld 408576698