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

Side by Side 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 unified diff | 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 »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <html>
3
4 <head>
5 <title>fuzzer-collapse-function-sk demo</title>
6 <meta charset="utf-8">
7 <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
8 <meta name="viewport" content="width=device-width, minimum-scale=1.0, initial- scale=1, user-scalable=yes">
9 <script src="/res/common/js/common.js"></script>
10 <script src="/res/js/fuzzer.js"></script>
11 <script src="/res/imp/bower_components/webcomponentsjs/webcomponents-lite.js"> </script>
12 <link rel="import" href="fuzzer-collapse-function-sk.html">
13 </head>
14
15 <body>
16 <h1>fuzzer-collapse-function-sk demo</h1>
17
18 <h2>Collapsed</h2>
19 <fuzzer-collapse-function-sk id="func" details-base="/details?file=foo"></fuzz er-collapse-function-sk>
20
21 <h2>Expanded</h2>
22 <fuzzer-collapse-function-sk id="expanded" expand="true" details-base="/detail s?file=foo"></fuzzer-collapse-function-sk>
23
24 <script type="text/javascript" charset="utf-8">
25 var data = {
26 "functionName": "frizzle()",
27 "count": 18,
28 "byLineNumber": [{
29 "lineNumber": 64,
30 "count": 17,
31 "reports": []
32 }, {
33 "lineNumber": 69,
34 "count": 1,
35 "reports": []
36 }]
37 };
38
39 $$$('#func').setFunc(data);
40 $$$('#expanded').setFunc(data);
41 </script>
42 </body>
43
44 </html>
OLDNEW
« 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