1
    2
    3
    4
    5
    6
    7
    8
    9
   10
   11

content / test / data / unload.html [blame]

<html>
  <head>
    <title>Loading...</title>
    <script>
      window.onunload = function(e) { return 'foo'; };
    </script>
  </head>
  <body>
    <p>Navigate to another page to trigger unload handler.</p>
  </body>
</html>