haikuwebkit/LayoutTests/fast/loader/unload-javascript-url.html

13 lines
278 B
HTML

<script>
addEventListener("unload", function() {
window.location = "javascript:alert('FAIL')";
}, false);
</script>
<script>
if (window.testRunner) {
testRunner.dumpAsText();
testRunner.waitUntilDone();
}
window.location = "resources/pass-and-notify-done.html";
</script>