Files
UXP-Fixed/toolkit/components/startup/tests/browser/beforeunload.html
T
2018-02-02 04:16:08 -05:00

11 lines
172 B
HTML

<html>
<script>
window.onbeforeunload = function(event) {
event.returnValue = 'Test beforeunload handler';
}
</script>
<body>
Test page
</body>
</html>