mirror of
https://github.com/roytam1/UXP.git
synced 2026-06-11 19:08:36 +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>
|