Revision df51b2f313e3191f4d99b17f289863d8df68ce7b authored by Jonathan Kew on 21 June 2012, 06:45:55 UTC, committed by Jonathan Kew on 21 June 2012, 06:45:55 UTC
1 parent 84df408
Raw File
file_bug385434_3.html
<!--
Inner frame for test of bug 385434.
https://bugzilla.mozilla.org/show_bug.cgi?id=385434
-->
<html>
<head>
  <script type="application/javascript">
    // Notify our parent if we have a hashchange and once we're done loading.
    window.addEventListener("hashchange", parent.onIframeHashchange, false);
  
    window.addEventListener("DOMContentLoaded", function() {
      // This also should trigger a hashchange, becuase the readystate is
      // "interactive", not "complete" during DOMContentLoaded.
      window.location.hash = "2";
    }, false);
  
  </script>
</head>

<body>
</body>
</html>
back to top