summaryrefslogtreecommitdiffstats
path: root/browser/base/content/test/tabPrompts/file_beforeunload_stop.html
blob: 7273e60c651d66d2c59e8be7842746e893bf33ae (plain)
1
2
3
4
5
6
7
8
<body>
  <p>I will ask not to be closed.</p>
  <script>
    window.onbeforeunload = function() {
      return "true";
    };
  </script>
</body>