Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / events / resources / subframe-stop-load-in-unload-handler-using-document-write.html
blobf8664cf27d28a69d2b7b13ca2263a21d96f811e5
1 <script>
2 window.location = "pass.html";
4 window.onunload = function()
6 document.write("document.write");
7 setTimeout("parent.log('You wanted to go to: '+ location.href); parent.fail()", 500);
9 </script>