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

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

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 unified diff | Download patch
OLDNEW
1 <?xml version="1.0"?> 1 <?xml version="1.0"?>
2 <svg xmlns="http://www.w3.org/2000/svg" width="400" height="400"> 2 <svg xmlns="http://www.w3.org/2000/svg" width="400" height="400">
3 <script> 3 <script>
4 function init() 4 function init()
5 { 5 {
6 var script = document.createElementNS("http://www.w3.org/2000/svg", "script" ); 6 var script = document.createElementNS("http://www.w3.org/2000/svg", "script" );
7 script.setAttributeNS('http://www.w3.org/1999/xlink', 'href', "does-not-exis t.js"); 7 script.setAttributeNS('http://www.w3.org/1999/xlink', 'href', "does-not-exis t.js");
8 8
9 script.onerror = function() { console.log('PASS'); }; 9 script.onerror = function() { window.top.done(); };
10 document.documentElement.appendChild(script); 10 document.documentElement.appendChild(script);
11 window.top.document.adoptNode(document.documentElement); 11 var contextDoc = window.top.document.implementation.createDocument("", null) ;
12 window.top.done(); 12 contextDoc.adoptNode(document.documentElement);
13 } 13 }
14 init(); 14 init();
15 </script> 15 </script>
16 </svg> 16 </svg>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698