Dactyloidae/toolkit/components/startup/tests/browser/beforeunload.html

10 lines
172 B
HTML
Raw Normal View History

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