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

Unified Diff: LayoutTests/http/tests/w3c/resources/testharnessreport.js

Issue 1165753005: testharnessreport: Remove div[id=log] from resultant HTML. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 7 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
Index: LayoutTests/http/tests/w3c/resources/testharnessreport.js
diff --git a/LayoutTests/http/tests/w3c/resources/testharnessreport.js b/LayoutTests/http/tests/w3c/resources/testharnessreport.js
index 6e35da5ae1715880635e00aab9953c2dfa84b657..6119e0d544a038d884d42c72823b269adff43f38 100644
--- a/LayoutTests/http/tests/w3c/resources/testharnessreport.js
+++ b/LayoutTests/http/tests/w3c/resources/testharnessreport.js
@@ -102,8 +102,6 @@ add_completion_callback(function (tests, harness_status) {
// Assume it's a CSSWG style test, and anything other than the log div isn't
// material to the testrunner output, so should be hidden from the text dump
for (var i = 0; i < document.body.children.length; i++) {
- if (document.body.children[i] === logDiv) continue;
-
document.body.children[i].style.visibility = "hidden";
}
}

Powered by Google App Engine
This is Rietveld 408576698