mirror of
https://github.com/roytam1/basilisk55.git
synced 2026-05-27 06:30:06 +00:00
11 lines
172 B
HTML
11 lines
172 B
HTML
<html>
|
|
<script>
|
|
window.onbeforeunload = function(event) {
|
|
event.returnValue = "Test beforeunload handler";
|
|
}
|
|
</script>
|
|
<body>
|
|
Test page
|
|
</body>
|
|
</html>
|