Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <!DOCTYPE html> | |
| 2 <html> | |
| 3 <script src="../../resources/js-test.js"></script> | |
| 4 <script> | |
| 5 description("Verifies that nested frame detach does not crash."); | |
| 6 | |
| 7 if (window.testRunner) | |
| 8 testRunner.dumpAsText(); | |
| 9 | |
| 10 var count = 0; | |
| 11 function removeFrame() { | |
| 12 document.body.removeChild(document.getElementById("frame")); | |
| 13 if (++count == 2) | |
| 14 testRunner.notifyDone(); | |
| 15 } | |
| 16 </script> | |
| 17 <iframe id="frame" src="resources/detach-frame-nested-subframe.html"></iframe> | |
| 18 </html> | |
| OLD | NEW |