mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-11-08 12:19:05 +02:00
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>
|