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

Side by Side Diff: fuzzer/templates/details.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-stacktrace-sk.html ('k') | fuzzer/templates/index.html » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html> 2 <html>
3 <head> 3 <head>
4 <title>Skia Fuzzer Details</title> 4 <title>Skia Fuzzer Details</title>
5 {{template "header.html" .}} 5 {%template "header.html" .%}
6 </head> 6 </head>
7 <body class="fullbleed vertical layout unresolved"> 7 <body class="fullbleed vertical layout unresolved">
8 <style is="custom-style"> 8 <style is="custom-style">
9 app-sk { 9 app-sk {
10 --app-sk-main: { 10 --app-sk-main: {
11 background-color: #FFFFFF; 11 background-color: #FFFFFF;
12 font-family: sans-serif; 12 font-family: sans-serif;
13 }; 13 };
14 --app-sk-toolbar: { 14 --app-sk-toolbar: {
15 background-color: #8be1b8; 15 background-color: #8be1b8;
16 }; 16 };
17 login-sk{ 17 login-sk{
18 --login-sk-color: white; 18 --login-sk-color: white;
19 }; 19 };
20 } 20 }
21 </style> 21 </style>
22 <app-sk class="fit" flex> 22 <template is="dom-bind">
23 <img header id="logo" src="/res/img/skia_fuzz.png"> 23 <app-sk class="fit" drawer_width="250px" flex>
24 <fuzzer-status-sk rtoolbar></fuzzer-status-sk> 24 <img header id="logo" src="/res/img/skia_fuzz.png">
25 <fuzzer-menu-sk navigation></fuzzer-menu-sk> 25 <fuzzer-status-sk rtoolbar></fuzzer-status-sk>
26 <fuzzer-menu-sk navigation>
27 <fuzzer-filter-sk include="{{include}}" exclude="{{exclude}}">
28 </fuzzer-filter-sk>
29 </fuzzer-menu-sk>
26 30
27 <h2>Fuzz Details</h2> 31 <h2>Fuzz Details</h2>
28 32
29 <fuzzer-info-sk category="{{.Category}}"></fuzzer-info-sk> 33 <fuzzer-info-sk
30 </app-sk> 34 category="{%.Category%}"
35 include="[[include]]"
36 exclude="[[exclude]]">
37 </fuzzer-info-sk>
38 </app-sk>
39 </template>
31 40
32 </body> 41 </body>
33 </html> 42 </html>
OLDNEW
« no previous file with comments | « fuzzer/res/imp/fuzzer-stacktrace-sk.html ('k') | fuzzer/templates/index.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698