fune/toolkit/components/startup/tests/browser/beforeunload.html
2017-10-15 20:50:39 +01:00

10 lines
173 B
HTML

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