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

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: Fix links 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
Index: fuzzer/templates/details.html
diff --git a/fuzzer/templates/details.html b/fuzzer/templates/details.html
index 63f6dd02784e45c3cf2af7bd4fe9801b46a57b94..a992e43b1f8062ea02d4a7a1293c0f600977ec76 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>

Powered by Google App Engine
This is Rietveld 408576698