Chromium Code Reviews| OLD | NEW |
|---|---|
| (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 }}" | |
| 25 steps="{{ builders[builder] }}"> | |
|
ojan
2014/07/10 02:26:43
Nit: lets use 4 space indent for wrapped lines. Th
michaelpg
2014/07/10 02:53:28
Done.
| |
| 26 </ct-builder> | |
| 27 </template> | |
| 28 </template> | |
| 29 <script> | |
| 30 Polymer({ | |
| 31 builders: {}, | |
| 32 | |
| 33 keys: function(obj) { | |
| 34 return Object.keys(obj); | |
| 35 }, | |
| 36 }); | |
| 37 </script> | |
| 38 </polymer-element> | |
| OLD | NEW |