OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <!-- http://crbug.com/147592 | 2 <!-- http://crbug.com/147592 |
3 http://webkit.org/b/96354 --> | 3 http://webkit.org/b/96354 --> |
4 <script> | 4 <script> |
5 if (window.testRunner) { | 5 if (window.testRunner) { |
6 testRunner.dumpAsText(); | 6 testRunner.dumpAsText(); |
7 testRunner.waitUntilDone(); | 7 testRunner.waitUntilDone(); |
8 } | 8 } |
9 | 9 |
10 document.addEventListener("DOMContentLoaded", runTest); | 10 document.addEventListener("DOMContentLoaded", runTest); |
(...skipping 10 matching lines...) Expand all Loading... |
21 } | 21 } |
22 | 22 |
23 function done() | 23 function done() |
24 { | 24 { |
25 document.body.innerText = "PASS"; | 25 document.body.innerText = "PASS"; |
26 if (window.testRunner) | 26 if (window.testRunner) |
27 testRunner.notifyDone(); | 27 testRunner.notifyDone(); |
28 } | 28 } |
29 </script> | 29 </script> |
30 <iframe id="frame" src="resources/detached-frame-crash-frame.html"/> | 30 <iframe id="frame" src="resources/detached-frame-crash-frame.html"/> |
OLD | NEW |