OLD | NEW |
---|---|
(Empty) | |
1 <html> | |
2 <body> | |
3 <script> | |
4 if (window.testRunner) { | |
5 testRunner.dumpAsText(); | |
6 testRunner.waitUntilDone(); | |
7 testRunner.setCanOpenWindows(); | |
8 } | |
9 | |
10 var w = window.open("resources/reentrant-beforeunload-helper.html"); | |
11 w.onload = function() { | |
12 setTimeout(function() { | |
13 w.close(); | |
14 if (window.testRunner) | |
15 testRunner.notifyDone(); | |
16 }, 0); | |
17 }; | |
18 </script> | |
19 </body> | |
20 </html> | |
OLD | NEW |