OLD | NEW |
1 <!-- | 1 <!-- |
2 Copyright 2014 The Chromium Authors. All rights reserved. | 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 | 3 Use of this source code is governed by a BSD-style license that can be |
4 found in the LICENSE file. | 4 found in the LICENSE file. |
5 --> | 5 --> |
6 | 6 |
7 <link rel="import" href="ct-builder.html"> | 7 <link rel="import" href="ct-builder.html"> |
8 | 8 |
9 <!-- Table of failure types, listing the failing builders for each type. --> | 9 <!-- Table of failure types, listing the failing builders for each type. --> |
10 <polymer-element name="ct-builder-grid" attributes="failures"> | 10 <polymer-element name="ct-builder-grid" attributes="failures"> |
(...skipping 17 matching lines...) Expand all Loading... |
28 } | 28 } |
29 | 29 |
30 tr :first-child span { | 30 tr :first-child span { |
31 padding: 0 2px; | 31 padding: 0 2px; |
32 } | 32 } |
33 | 33 |
34 .TIMEOUT span { | 34 .TIMEOUT span { |
35 background-color: #fffc6c; | 35 background-color: #fffc6c; |
36 } | 36 } |
37 | 37 |
| 38 .FAIL span, |
38 .TEXT span { | 39 .TEXT span { |
39 background-color: #e98080; | 40 background-color: #e98080; |
40 } | 41 } |
41 | 42 |
42 .CRASH span { | 43 .CRASH span { |
43 background-color: #ffc343; | 44 background-color: #ffc343; |
44 } | 45 } |
45 | 46 |
46 .AUDIO span { | 47 .AUDIO span { |
47 background-color: #bfdfff; | 48 background-color: #bfdfff; |
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
98 var result = results[builder].actual; | 99 var result = results[builder].actual; |
99 if (!this._resultTypes[result]) | 100 if (!this._resultTypes[result]) |
100 this._resultTypes[result] = {}; | 101 this._resultTypes[result] = {}; |
101 this._resultTypes[result][builder] = 1; | 102 this._resultTypes[result][builder] = 1; |
102 }).bind(this)); | 103 }).bind(this)); |
103 }, this); | 104 }, this); |
104 }, | 105 }, |
105 }); | 106 }); |
106 </script> | 107 </script> |
107 </polymer-element> | 108 </polymer-element> |
OLD | NEW |