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

Unified 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 side-by-side diff with in-line comments
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 »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: fuzzer/templates/details.html
diff --git a/fuzzer/templates/details.html b/fuzzer/templates/details.html
index 63f6dd02784e45c3cf2af7bd4fe9801b46a57b94..7689987a24f4c957c3f0fd5ab066b21ce433520c 100644
--- a/fuzzer/templates/details.html
+++ b/fuzzer/templates/details.html
@@ -2,32 +2,41 @@
<html>
<head>
<title>Skia Fuzzer Details</title>
- {{template "header.html" .}}
+ {%template "header.html" .%}
</head>
<body class="fullbleed vertical layout unresolved">
- <style is="custom-style">
- app-sk {
- --app-sk-main: {
- background-color: #FFFFFF;
- font-family: sans-serif;
- };
- --app-sk-toolbar: {
- background-color: #8be1b8;
- };
- login-sk{
- --login-sk-color: white;
- };
- }
- </style>
- <app-sk class="fit" flex>
- <img header id="logo" src="/res/img/skia_fuzz.png">
- <fuzzer-status-sk rtoolbar></fuzzer-status-sk>
- <fuzzer-menu-sk navigation></fuzzer-menu-sk>
+ <style is="custom-style">
+ app-sk {
+ --app-sk-main: {
+ background-color: #FFFFFF;
+ font-family: sans-serif;
+ };
+ --app-sk-toolbar: {
+ background-color: #8be1b8;
+ };
+ login-sk{
+ --login-sk-color: white;
+ };
+ }
+ </style>
+ <template is="dom-bind">
+ <app-sk class="fit" drawer_width="250px" flex>
+ <img header id="logo" src="/res/img/skia_fuzz.png">
+ <fuzzer-status-sk rtoolbar></fuzzer-status-sk>
+ <fuzzer-menu-sk navigation>
+ <fuzzer-filter-sk include="{{include}}" exclude="{{exclude}}">
+ </fuzzer-filter-sk>
+ </fuzzer-menu-sk>
- <h2>Fuzz Details</h2>
+ <h2>Fuzz Details</h2>
- <fuzzer-info-sk category="{{.Category}}"></fuzzer-info-sk>
- </app-sk>
+ <fuzzer-info-sk
+ category="{%.Category%}"
+ include="[[include]]"
+ exclude="[[exclude]]">
+ </fuzzer-info-sk>
+ </app-sk>
+ </template>
</body>
</html>
« 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