blob: dae0340ad9e6dc250cf7fe4b05a148fa5a7700e3 [file] [log] [blame]
<!doctype html>
<title>Prompt when beforeunload returns string value</title>
<script>
addEventListener("beforeunload",
function(e) {return "PASS if you see this"},
false);
</script>
<p>When clicking the link below, you should get a prompt asking if you want to unload the document</p>
<a href="next.html">Click here</a>