mirror of
https://github.com/ManchildProductions/UXP-Fixed.git
synced 2026-05-27 21:48:28 +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>
|