summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/html/browsers/browsing-the-web/unloading-documents/prompt/manual-004.html
blob: a4d29689224a7020e342785ae21999d2e715b4b3 (plain)
1
2
3
4
5
6
7
8
9
10
11
<!doctype html>
<title>Prompt on form submit</title>
<script>
addEventListener("beforeunload",
function(e) {e.preventDefault()},
false);
</script>
<p>When clicking the button below, you should get a prompt asking if you want to unload the document</p>
<form method="get" action="next.html">
<input type="submit" value="Click here">
</form>