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

Side by Side Diff: LayoutTests/fast/dom/HTMLScriptElement/append-child-adopt-node-crash.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 unified diff | Download patch
« no previous file with comments | « no previous file | LayoutTests/fast/dom/HTMLScriptElement/append-child-adopt-node-crash-expected.txt » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <iframe src=resources/append-child-adopt-node-frame.html></iframe> 2 <iframe src=resources/append-child-adopt-node-frame.html></iframe>
3 <iframe src=resources/append-child-adopt-node-frame.svg></iframe> 3 <iframe src=resources/append-child-adopt-node-frame.svg></iframe>
4 <script> 4 <script>
5 testRunner.waitUntilDone(); 5 testRunner.waitUntilDone();
6 testRunner.dumpAsText(); 6 testRunner.dumpAsText();
7 7
8 // Don't use js-test.js because this bug is about <script> loading and
9 // it makes sense to keep this small and easy to debug when regress.
10 console.log("PASS unless crash.");
11
8 var count = document.querySelectorAll("iframe").length; 12 var count = document.querySelectorAll("iframe").length;
9 13
10 function done() { 14 function done() {
11 count--; 15 if (--count)
12 if (count)
13 return; 16 return;
14 // Don't use js-test.js because this bug is about <script> loading and
15 // it makes sense to keep this small and easy to debug when regress.
16 console.log("PASS unless crash.");
17 testRunner.notifyDone(); 17 testRunner.notifyDone();
18 } 18 }
19 </script> 19 </script>
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/fast/dom/HTMLScriptElement/append-child-adopt-node-crash-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698