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

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

Issue 496443008: Transfer pending async script loader to new document. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Robustify new test wrt expected output Created 6 years, 4 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-frame.svg
diff --git a/LayoutTests/fast/dom/HTMLScriptElement/resources/append-child-adopt-node-frame.svg b/LayoutTests/fast/dom/HTMLScriptElement/resources/append-child-adopt-node-frame.svg
new file mode 100644
index 0000000000000000000000000000000000000000..9f4602c99b18af69dad8b9f24651f5fc37a2c4d7
--- /dev/null
+++ b/LayoutTests/fast/dom/HTMLScriptElement/resources/append-child-adopt-node-frame.svg
@@ -0,0 +1,14 @@
+<?xml version="1.0"?>
+<svg xmlns="http://www.w3.org/2000/svg" width="400" height="400">
+<script>
+function init()
+{
+ var script = document.createElementNS("http://www.w3.org/2000/svg", "script");
+ script.setAttributeNS('http://www.w3.org/1999/xlink', 'href', "should-load.js");
+ document.documentElement.appendChild(script);
+ window.top.document.adoptNode(document.documentElement);
+ window.top.done();
+}
+init();
+</script>
+</svg>

Powered by Google App Engine
This is Rietveld 408576698