| OLD | NEW |
| (Empty) | |
| 1 <!DOCTYPE html> |
| 2 We pass if we don't crash under ASAN. |
| 3 <iframe id=iframe src="../navigation/resources/blank.txt"></iframe> |
| 4 <script> |
| 5 if (window.testRunner) { |
| 6 testRunner.dumpAsText(); |
| 7 testRunner.waitUntilDone(); |
| 8 } |
| 9 |
| 10 window.onload = function() |
| 11 { |
| 12 iframe.remove(); |
| 13 gc(); |
| 14 } |
| 15 |
| 16 document.addEventListener("DOMContentLoaded", function() { |
| 17 setTimeout(function() { |
| 18 document.adoptNode(iframe.attributes["src"]); |
| 19 if (window.testRunner) |
| 20 testRunner.notifyDone(); |
| 21 }, 0); |
| 22 }, false); |
| 23 </script> |
| OLD | NEW |