OLD | NEW |
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 Loading... |
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 Loading... |
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 | |
OLD | NEW |