OLD | NEW |
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 } |
17 | 19 |
18 if (window.testRunner) | 20 if (window.testRunner) |
19 testRunner.notifyDone(); | 21 testRunner.notifyDone(); |
20 } | 22 } |
21 | 23 |
22 </script> | 24 </script> |
23 </head> | 25 </head> |
24 <body> | 26 <body> |
25 <iframe src="resources/child-opens-window.html"></iframe> | 27 <iframe src="resources/child-opens-window.html"></iframe> |
26 FAIL | 28 FAIL |
27 </body> | 29 </body> |
28 </html> | 30 </html> |
OLD | NEW |