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

Unified Diff: LayoutTests/fast/html/imports/import-element-removed-flag.html

Issue 279463002: HTML Imports: Fix yet another FOUC (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 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/fast/html/imports/import-element-removed-flag.html
diff --git a/LayoutTests/fast/html/imports/import-element-removed-flag.html b/LayoutTests/fast/html/imports/import-element-removed-flag.html
index 050aa50c252f26a6b6ac2cdbdea07a991f08cfeb..995d28b31b09e84adb3a7b1dc09ea7605795afd9 100644
--- a/LayoutTests/fast/html/imports/import-element-removed-flag.html
+++ b/LayoutTests/fast/html/imports/import-element-removed-flag.html
@@ -40,7 +40,6 @@ function testDynamicImport()
dynamicImport = document.createElement("link");
dynamicImport.setAttribute("rel", "import");
dynamicImport.setAttribute("href", "resources/bye.html");
- dynamicImport.addEventListener("load", check);
document.head.appendChild(dynamicImport);
}
@@ -49,7 +48,6 @@ function testDynamicImportRemovingEagerly()
dynamicImportEager = document.createElement("link");
dynamicImportEager.setAttribute("rel", "import");
dynamicImportEager.setAttribute("href", "resources/setting-greet-var.html");
- dynamicImportEager.addEventListener("load", check);
document.head.appendChild(dynamicImportEager);
// Reoving <link> just after appending it.

Powered by Google App Engine
This is Rietveld 408576698