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

Unified Diff: LayoutTests/fast/harness/results.html

Issue 27488002: Fix the position of show result category checkbox for easy access. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Review comments addressed! Created 7 years, 2 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/fast/harness/results.html
diff --git a/LayoutTests/fast/harness/results.html b/LayoutTests/fast/harness/results.html
index 4976ed0eddaa7d30f64182b38ca1358d211809bf..94df5fffa7198785d453b75180c0f2ba030ca995 100644
--- a/LayoutTests/fast/harness/results.html
+++ b/LayoutTests/fast/harness/results.html
@@ -1293,7 +1293,12 @@ function generatePage()
'<a href="javascript:void()" onclick="expandAllExpectations()">expand all</a> ' +
'<a href="javascript:void()" onclick="collapseAllExpectations()">collapse all</a> ' +
'<label><input id="toggle-images" type=checkbox checked onchange="handleToggleImagesChange()">Toggle images</label>' +
- '</div>';
+ '<div id=container>Show: '+
+ '<label><input id="show-expected-failures" type=checkbox onchange="handleUnexpectedResultsChange()">expected failures</label>' +
+ '<label><input id="show-flaky-failures" type=checkbox onchange="handleFlakyFailuresChange()">flaky failures</label>' +
+ '<label><input id="show-unexpected-passes" type=checkbox onchange="handleUnexpectedPassesChange()">unexpected passes</label>' +
+ '<label><input id="show-stderr" type=checkbox onchange="handleStderrChange()">stderr</label>' +
+ '</div></div>';
if (globalState().results.interrupted)
html += "<p class='stopped-running-early-message'>Testing exited early.</p>"
@@ -1324,12 +1329,7 @@ function generatePage()
'<p>httpd error log: <a href="error_log.txt">error_log.txt</a></p>';
}
- html += '</div><div>' +
- '<label><input id="show-expected-failures" type=checkbox onchange="handleUnexpectedResultsChange()">Show expected failures</label>' +
- '<label><input id="show-flaky-failures" type=checkbox onchange="handleFlakyFailuresChange()">Show flaky failures</label>' +
- '<label><input id="show-unexpected-passes" type=checkbox onchange="handleUnexpectedPassesChange()">Show unexpected passes</label>' +
- '<label><input id="show-stderr" type=checkbox onchange="handleStderrChange()">Show stderr</label>' +
- '</div>';
+ html += '</div>';
document.body.innerHTML = html;
« 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