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

Unified Diff: Tools/GardeningServer/ui/ct-bot-failure-card.html

Issue 476903004: [sheriff-o-matic]: Basic trooper display for sheriff-o-matic. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 3 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 | « Tools/GardeningServer/test/unit-tests.html ('k') | Tools/GardeningServer/ui/ct-chart.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Tools/GardeningServer/ui/ct-bot-failure-card.html
diff --git a/Tools/GardeningServer/ui/ct-bot-failure-card.html b/Tools/GardeningServer/ui/ct-bot-failure-card.html
new file mode 100644
index 0000000000000000000000000000000000000000..a67e61a704996b695a3fd7163a1c2db70291b7e9
--- /dev/null
+++ b/Tools/GardeningServer/ui/ct-bot-failure-card.html
@@ -0,0 +1,31 @@
+<!--
+Copyright 2014 The Chromium Authors. All rights reserved.
+Use of this source code is governed by a BSD-style license that can be
+found in the LICENSE file.
+-->
+
+<link rel="import" href="ct-builder-grid.html">
+<link rel="import" href="ct-commit-list.html">
+<link rel="import" href="ct-test-list.html">
+
+<polymer-element name="ct-bot-failure-card" attributes="group" noscript>
+ <template>
+ <style>
+ ct-builder-grid {
+ margin-right: 10px;
+ width: 250px;
+ }
+
+ #failure {
+ flex: 1;
+ }
+ </style>
+ <ct-builder-grid failures="{{ group.failures }}"></ct-builder-grid>
+ <div id="failure">
+ <ct-test-list tests="{{ group.failures }}" tree="{{ tree }}"></ct-test-list>
+ <ct-commit-list commitList="{{ group.commitList }}"></ct-commit-list>
+ </div>
+ </template>
+</polymer-element>
+
+
« no previous file with comments | « Tools/GardeningServer/test/unit-tests.html ('k') | Tools/GardeningServer/ui/ct-chart.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698