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

Unified Diff: third_party/WebKit/LayoutTests/external/wpt/html/resources/common.js

Issue 2743053003: [Reland #1] Don't create layout objects for children of display-none iframes. (Closed)
Patch Set: rebaseline. Created 3 years, 9 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: third_party/WebKit/LayoutTests/external/wpt/html/resources/common.js
diff --git a/third_party/WebKit/LayoutTests/external/wpt/html/resources/common.js b/third_party/WebKit/LayoutTests/external/wpt/html/resources/common.js
index 236a65fd85d0b36e77950f4e7b66b456a1b16973..273f3a47be6707f3722922e34bcb272889636003 100644
--- a/third_party/WebKit/LayoutTests/external/wpt/html/resources/common.js
+++ b/third_party/WebKit/LayoutTests/external/wpt/html/resources/common.js
@@ -61,7 +61,6 @@ function newIFrame(context, src) {
}
var iframe = document.createElement('iframe');
- iframe.style.display = 'none';
if (typeof (src) != 'undefined') {
iframe.src = src;

Powered by Google App Engine
This is Rietveld 408576698