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

Side by Side 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 unified diff | 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 »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 <!--
2 Copyright 2014 The Chromium Authors. All rights reserved.
3 Use of this source code is governed by a BSD-style license that can be
4 found in the LICENSE file.
5 -->
6
7 <link rel="import" href="ct-builder-grid.html">
8 <link rel="import" href="ct-commit-list.html">
9 <link rel="import" href="ct-test-list.html">
10
11 <polymer-element name="ct-bot-failure-card" attributes="group" noscript>
12 <template>
13 <style>
14 ct-builder-grid {
15 margin-right: 10px;
16 width: 250px;
17 }
18
19 #failure {
20 flex: 1;
21 }
22 </style>
23 <ct-builder-grid failures="{{ group.failures }}"></ct-builder-grid>
24 <div id="failure">
25 <ct-test-list tests="{{ group.failures }}" tree="{{ tree }}"></ct-test-lis t>
26 <ct-commit-list commitList="{{ group.commitList }}"></ct-commit-list>
27 </div>
28 </template>
29 </polymer-element>
30
31
OLDNEW
« 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