summaryrefslogtreecommitdiffstats
path: root/toolkit/components/startup/tests/browser/beforeunload.html
blob: 93ddd5f14349f4fe182ee01348621dcc6c3de9ff (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>