fune/browser/base/content/test/tabPrompts/file_beforeunload_stop.html

8 lines
145 B
HTML

<body>
<p>I will ask not to be closed.</p>
<script>
window.onbeforeunload = function() {
return "true";
};
</script>
</body>