haikuwebkit/LayoutTests/fast/loader/unload-window-location.html

13 lines
289 B
HTML

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