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

Unified Diff: LayoutTests/fast/dom/HTMLScriptElement/resources/append-child-adopt-node-error-frame.html

Issue 532643002: Move pending async script to the correct resolved document. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Update expected outputs. Created 6 years, 3 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/dom/HTMLScriptElement/resources/append-child-adopt-node-error-frame.html
diff --git a/LayoutTests/fast/dom/HTMLScriptElement/resources/append-child-adopt-node-error-frame.html b/LayoutTests/fast/dom/HTMLScriptElement/resources/append-child-adopt-node-error-frame.html
index 8d07bd7f308b2c00d63b2c9cddba5d82eb6101b7..3095ba797b34950d7d684de02d426f87f45c6eeb 100644
--- a/LayoutTests/fast/dom/HTMLScriptElement/resources/append-child-adopt-node-error-frame.html
+++ b/LayoutTests/fast/dom/HTMLScriptElement/resources/append-child-adopt-node-error-frame.html
@@ -6,11 +6,10 @@ function init()
{
var script = document.createElement("script");
script.src = "does-not-exist.js";
- script.onerror = function () { console.log('PASS'); };
+ script.onerror = function () { window.top.done(); };
document.body.appendChild(script);
- window.top.document.adoptNode(document.documentElement);
-
- window.top.done();
+ var contextDoc = window.top.document.implementation.createDocument("", null);
+ contextDoc.adoptNode(document.documentElement);
}
init();

Powered by Google App Engine
This is Rietveld 408576698