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

Side by Side Diff: LayoutTests/fast/dom/Window/window-open-no-multiple-windows-from-iframe.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 <html> 2 <html>
3 <head> 3 <head>
4 <script> 4 <script>
5 if (window.testRunner) { 5 if (window.testRunner) {
6 testRunner.dumpAsText(); 6 testRunner.dumpAsText();
7 testRunner.setCanOpenWindows(true); 7 testRunner.setCanOpenWindows(true);
8 testRunner.setPopupBlockingEnabled(false); 8 testRunner.setPopupBlockingEnabled(false);
9 testRunner.overridePreference('WebKitSupportsMultipleWindows', false); 9 testRunner.overridePreference('WebKitSupportsMultipleWindows', false);
10 testRunner.waitUntilDone(); 10 testRunner.waitUntilDone();
11 } 11 }
12 12
13 function opened(result) { 13 function opened(result) {
14 // Called by the embedded iframe. 14 // Called by the embedded iframe.
15 if (result == window) { 15 if (result == window)
16 document.writeln("PASS"); 16 document.writeln("PASS");
17 document.close();
18 }
19 17
20 if (window.testRunner) 18 if (window.testRunner)
21 testRunner.notifyDone(); 19 testRunner.notifyDone();
22 } 20 }
23 21
24 </script> 22 </script>
25 </head> 23 </head>
26 <body> 24 <body>
27 <iframe src="resources/child-opens-window.html"></iframe> 25 <iframe src="resources/child-opens-window.html"></iframe>
28 FAIL 26 FAIL
29 </body> 27 </body>
30 </html> 28 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698