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

Side by Side Diff: Tools/TestResultServer/static-dashboards/flakiness_dashboard_tests.css

Issue 296423002: TestResultServer: Add failure 'LEAK' (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Modify jsonresults_unittest.py Created 6 years, 6 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
« no previous file with comments | « Tools/TestResultServer/model/jsonresults_unittest.py ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2012 Google Inc. All rights reserved. 2 * Copyright (C) 2012 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after
129 } 129 }
130 .IMAGETEXT { 130 .IMAGETEXT {
131 background-color: #96f; 131 background-color: #96f;
132 } 132 }
133 .AUDIO { 133 .AUDIO {
134 background-color: lightblue; 134 background-color: lightblue;
135 } 135 }
136 .FLAKY { 136 .FLAKY {
137 background-color: turquoise; 137 background-color: turquoise;
138 } 138 }
139 .LEAK {
140 background-color: pink;
141 }
139 .separator { 142 .separator {
140 border: 1px solid lightgray; 143 border: 1px solid lightgray;
141 height: 0px; 144 height: 0px;
142 } 145 }
143 #passing-tests, 146 #passing-tests,
144 #skipped-tests { 147 #skipped-tests {
145 -webkit-column-count: 3; 148 -webkit-column-count: 3;
146 -webkit-column-gap: 25px; 149 -webkit-column-gap: 25px;
147 -webkit-column-rule: 1px dashed black; 150 -webkit-column-rule: 1px dashed black;
148 -moz-column-count: 3; 151 -moz-column-count: 3;
(...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after
249 display: inline-block; 252 display: inline-block;
250 white-space: nowrap; 253 white-space: nowrap;
251 } 254 }
252 .skipped-builder:after { 255 .skipped-builder:after {
253 content: '|'; 256 content: '|';
254 margin: 5px; 257 margin: 5px;
255 } 258 }
256 .skipped-builder:last-child:after { 259 .skipped-builder:last-child:after {
257 content: ''; 260 content: '';
258 } 261 }
259
OLDNEW
« no previous file with comments | « Tools/TestResultServer/model/jsonresults_unittest.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698