tenfourfox/toolkit/components/startup/tests/browser/beforeunload.html
Cameron Kaiser c9b2922b70 hello FPR
2017-04-19 00:56:45 -07:00

11 lines
171 B
HTML

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