10 lines
173 B
HTML
10 lines
173 B
HTML
<html>
|
|
<script>
|
|
window.onbeforeunload = function(event) {
|
|
event.returnValue = "Test beforeunload handler";
|
|
};
|
|
</script>
|
|
<body>
|
|
Test page
|
|
</body>
|
|
</html>
|