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

Side by Side Diff: Tools/GardeningServer/ui/ct-failing-builders.html

Issue 371133003: Add failed builders to sheriff-o-matic. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: async instead of endMicrotask Created 6 years, 5 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 | Annotate | Revision Log
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.html">
8
9 <!-- Lists builders that are failing and the problematic steps. -->
10 <polymer-element name="ct-failing-builders" attributes="builders">
11 <template>
12 <style>
13 :host {
14 display: block;
15 font-size: 0;
16 }
17
18 ct-builder {
19 display: inline-block;
20 margin: 0 5px 2px 0;
21 }
22 </style>
23 <template repeat="{{ builder in builders|keys }}">
24 <ct-builder builderName="{{ builder }}" steps="{{ builders[builder] }}">
25 </ct-builder>
26 </template>
27 </template>
28 <script>
29 Polymer({
30 builders: {},
31
32 keys: function(obj) {
33 return Object.keys(obj);
34 },
35 });
36 </script>
37 </polymer-element>
OLDNEW
« no previous file with comments | « Tools/GardeningServer/ui/ct-builder-tests.html ('k') | Tools/GardeningServer/ui/ct-failing-builders-tests.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698