summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--webkit/tools/layout_tests/flakiness_dashboard.html10
1 files changed, 3 insertions, 7 deletions
diff --git a/webkit/tools/layout_tests/flakiness_dashboard.html b/webkit/tools/layout_tests/flakiness_dashboard.html
index f74a8c5..ab950cb 100644
--- a/webkit/tools/layout_tests/flakiness_dashboard.html
+++ b/webkit/tools/layout_tests/flakiness_dashboard.html
@@ -1023,14 +1023,8 @@
/**
* Returns whether we should exclude test results from the test table.
- * Note that we never want to exclude tests when we're in the individual
- * tests view of the dashboard since the user is explicitly listing tests
- * to view.
*/
function shouldHideTest(testResult) {
- if (currentState.tests)
- return false;
-
if (testResult.isWontFix && !currentState.showWontFix)
return true;
@@ -1057,9 +1051,11 @@
}
function getHTMLForSingleTestRow(test, builder, opt_isCrossBuilderView) {
- if (shouldHideTest(test)) {
+ if (!opt_isCrossBuilderView && shouldHideTest(test)) {
// The innerHTML call is considerably faster if we exclude the rows for
// items we're not showing than if we hide them using display:none.
+ // For the crossBuilderView, we want to show all rows the user is
+ // explicitly listing tests to view.
return '';
}