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

Side by Side Diff: LayoutTests/fast/dom/MutationObserver/document-write.html

Issue 679863002: Revert "Prepare blink to unify definitions of load completion" (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 1 month 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 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <head> 2 <head>
3 </head> 3 </head>
4 <body> 4 <body>
5 <div id="result">RESULT</div> 5 <div id="result">RESULT</div>
6 <script> 6 <script>
7 7
8 var resultDiv = document.getElementById('result'); 8 var resultDiv = document.getElementById('result');
9 9
10 if (window.testRunner) { 10 if (window.testRunner) {
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
42 document.documentElement.appendChild(document.createElement('body')); 42 document.documentElement.appendChild(document.createElement('body'));
43 document.body.innerHTML = result; 43 document.body.innerHTML = result;
44 if (window.testRunner) { 44 if (window.testRunner) {
45 testRunner.notifyDone(); 45 testRunner.notifyDone();
46 } 46 }
47 }, 0); 47 }, 0);
48 } 48 }
49 49
50 finish(); 50 finish();
51 </script> 51 </script>
52 <iframe onload="mutate(); check(); document.write('<script>check();</script>'); document.close(); check(); finish();"> 52 <iframe onload="mutate(); check(); document.write('<script>check();</script>'); check(); finish();">
53 </body> 53 </body>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698