summaryrefslogtreecommitdiffstats
path: root/toolkit/components/startup/tests/browser/beforeunload.html
blob: 81fa1b57bc767c5f134b2e5841a736f8499e2a88 (plain)
1
2
3
4
5
6
7
8
9
10
<html>
  <script>
  window.onbeforeunload = function(event) {
    event.returnValue = "Test beforeunload handler";
  };
  </script>
  <body>
    Test page
  </body>
</html>