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

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

Issue 1662373002: Add UI to filter fuzzes based on tags. (Closed) Base URL: https://skia.googlesource.com/buildbot@add-asan
Patch Set: remove conflicting status-sk elements 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-collapse-function-sk.html ('k') | fuzzer/res/imp/fuzzer-filter-sk.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: fuzzer/res/imp/fuzzer-collapse-function-sk-demo.html
diff --git a/fuzzer/res/imp/fuzzer-collapse-function-sk-demo.html b/fuzzer/res/imp/fuzzer-collapse-function-sk-demo.html
new file mode 100644
index 0000000000000000000000000000000000000000..154a0de4aedaf7bf50b052a63ee6a4532c742e78
--- /dev/null
+++ b/fuzzer/res/imp/fuzzer-collapse-function-sk-demo.html
@@ -0,0 +1,44 @@
+<!DOCTYPE html>
+<html>
+
+<head>
+ <title>fuzzer-collapse-function-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/common/js/common.js"></script>
+ <script src="/res/js/fuzzer.js"></script>
+ <script src="/res/imp/bower_components/webcomponentsjs/webcomponents-lite.js"></script>
+ <link rel="import" href="fuzzer-collapse-function-sk.html">
+</head>
+
+<body>
+ <h1>fuzzer-collapse-function-sk demo</h1>
+
+ <h2>Collapsed</h2>
+ <fuzzer-collapse-function-sk id="func" details-base="/details?file=foo"></fuzzer-collapse-function-sk>
+
+ <h2>Expanded</h2>
+ <fuzzer-collapse-function-sk id="expanded" expand="true" details-base="/details?file=foo"></fuzzer-collapse-function-sk>
+
+ <script type="text/javascript" charset="utf-8">
+ var data = {
+ "functionName": "frizzle()",
+ "count": 18,
+ "byLineNumber": [{
+ "lineNumber": 64,
+ "count": 17,
+ "reports": []
+ }, {
+ "lineNumber": 69,
+ "count": 1,
+ "reports": []
+ }]
+ };
+
+ $$$('#func').setFunc(data);
+ $$$('#expanded').setFunc(data);
+ </script>
+</body>
+
+</html>
« no previous file with comments | « fuzzer/res/imp/fuzzer-collapse-function-sk.html ('k') | fuzzer/res/imp/fuzzer-filter-sk.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698