Chromium Code Reviews| 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> |