mirror of
https://github.com/classilla/tenfourfox.git
synced 2026-03-12 13:42:03 +00:00
11 lines
171 B
HTML
11 lines
171 B
HTML
<html>
|
|
<script>
|
|
window.onbeforeunload = function(event){
|
|
event.returnValue = 'Test beforeunload handler';
|
|
}
|
|
</script>
|
|
<body>
|
|
Test page
|
|
</body>
|
|
</html>
|