Wed, 31 Dec 2014 13:27:57 +0100
Ignore runtime configuration files generated during quality assurance.
michael@0 | 1 | <!-- |
michael@0 | 2 | Inner frame for test of bug 385434. |
michael@0 | 3 | https://bugzilla.mozilla.org/show_bug.cgi?id=385434 |
michael@0 | 4 | --> |
michael@0 | 5 | <html> |
michael@0 | 6 | <head> |
michael@0 | 7 | <script type="application/javascript"> |
michael@0 | 8 | // Notify our parent if we have a hashchange and once we're done loading. |
michael@0 | 9 | window.addEventListener("hashchange", parent.onIframeHashchange, false); |
michael@0 | 10 | |
michael@0 | 11 | window.addEventListener("DOMContentLoaded", function() { |
michael@0 | 12 | // This also should trigger a hashchange, becuase the readystate is |
michael@0 | 13 | // "interactive", not "complete" during DOMContentLoaded. |
michael@0 | 14 | window.location.hash = "2"; |
michael@0 | 15 | }, false); |
michael@0 | 16 | |
michael@0 | 17 | </script> |
michael@0 | 18 | </head> |
michael@0 | 19 | |
michael@0 | 20 | <body> |
michael@0 | 21 | </body> |
michael@0 | 22 | </html> |