Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / http / tests / misc / recreate-location-after-detach.html
blob12188b7a7232a0d20ef4c0c1d791d2ded659912e
1 <html>
2 <body>
3 We pass if we don't crash under ASAN.
4 <script>
5 if (window.testRunner)
6 testRunner.dumpAsText();
8 window.onload = function() {
9 i.remove();
10 document.body.appendChild(i);
13 i = document.body.appendChild(document.createElement("iframe"));
14 i.src = "about:blank";
15 i.addEventListener("load", frames[0].eval('(function(){location="javascript:location"})'));
16 </script>
17 </body>
18 </html>