mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-17 01:43:08 +09:00
10 lines
172 B
HTML
10 lines
172 B
HTML
<html>
|
|
<script>
|
|
window.onbeforeunload = function(event) {
|
|
event.returnValue = 'Test beforeunload handler';
|
|
}
|
|
</script>
|
|
<body>
|
|
Test page
|
|
</body>
|
|
</html>
|