| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <style> | 2 <style> |
| 3 html { | 3 html { |
| 4 height: 100%; | 4 height: 100%; |
| 5 } | 5 } |
| 6 body { | 6 body { |
| 7 margin: 0; | 7 margin: 0; |
| 8 font-family: Helvetica, sans-serif; | 8 font-family: Helvetica, sans-serif; |
| 9 font-size: 11pt; | 9 font-size: 11pt; |
| 10 display: -webkit-flex; | 10 display: -webkit-flex; |
| (...skipping 171 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 182 #flagged-tests { | 182 #flagged-tests { |
| 183 margin: 1px; | 183 margin: 1px; |
| 184 padding: 5px; | 184 padding: 5px; |
| 185 height: 100px; | 185 height: 100px; |
| 186 } | 186 } |
| 187 | 187 |
| 188 #flagged-test-container h2 { | 188 #flagged-test-container h2 { |
| 189 display: inline-block; | 189 display: inline-block; |
| 190 margin: 0 10px 0 0; | 190 margin: 0 10px 0 0; |
| 191 } | 191 } |
| 192 |
| 193 #results-table > tbody:hover { |
| 194 background-color: #DDD; |
| 195 } |
| 192 </style> | 196 </style> |
| 193 <style id="unexpected-pass-style"></style> | 197 <style id="unexpected-pass-style"></style> |
| 194 <style id="flaky-failures-style"></style> | 198 <style id="flaky-failures-style"></style> |
| 195 <style id="stderr-style"></style> | 199 <style id="stderr-style"></style> |
| 196 <style id="unexpected-style"></style> | 200 <style id="unexpected-style"></style> |
| 197 | 201 |
| 198 <script> | 202 <script> |
| 199 var g_state; | 203 var g_state; |
| 200 function globalState() | 204 function globalState() |
| 201 { | 205 { |
| (...skipping 1215 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1417 updateTestlistCounts(); | 1421 updateTestlistCounts(); |
| 1418 | 1422 |
| 1419 TestNavigator.reset(); | 1423 TestNavigator.reset(); |
| 1420 OptionWriter.apply(); | 1424 OptionWriter.apply(); |
| 1421 } | 1425 } |
| 1422 </script> | 1426 </script> |
| 1423 <!-- HACK: when json_results_test.js is included, loading this page runs the tes
ts. | 1427 <!-- HACK: when json_results_test.js is included, loading this page runs the tes
ts. |
| 1424 It is not copied to the layout-test-results output directory. --> | 1428 It is not copied to the layout-test-results output directory. --> |
| 1425 <script src="resources/results-test.js"></script> | 1429 <script src="resources/results-test.js"></script> |
| 1426 <body onload="generatePage()"></body> | 1430 <body onload="generatePage()"></body> |
| OLD | NEW |