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

Side by Side Diff: Tools/GardeningServer/ui/ct-builder-grid.html

Issue 416673003: Show non-webkit test failures in the failure stream (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: address review comments Created 6 years, 4 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
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
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
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>
OLDNEW
« no previous file with comments | « Tools/GardeningServer/scripts/ui_unittests.js ('k') | Tools/GardeningServer/ui/ct-embedded-flakiness-dashboard.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698