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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/harness/results.html

Issue 1686433004: Give test result lines gray background on hover (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 10 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
« no previous file with comments | « no previous file | 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 <!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
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
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>
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698