mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-10-31 22:25:30 +00:00
23 lines
605 B
HTML
23 lines
605 B
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>
|