Source code
Revision control
Copy as Markdown
Other Tools
Test Info: Warnings
- This test gets skipped with pattern: true
 - Manifest: docshell/test/navigation/mochitest.toml
 
<!DOCTYPE HTML>
<html>
<!--
-->
<head>
  <title>Test for static and dynamic frames and forward-back </title>
  <script src="/tests/SimpleTest/SimpleTest.js"></script>
  <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css"/>
</head>
<body onload="runTest()">
<p id="display"></p>
<div id="content" style="display: none">
</div>
<pre id="test">
  <script type="application/javascript">
    var testCount = 0; // Used by the test files.
    SimpleTest.waitForExplicitFinish();
    var testWindow;
    function runTest() {
      testWindow = window.open("file_static_and_dynamic_1.html", "", "width=360,height=480");
      testWindow.onunload = function() { }; // to prevent bfcache
    }
    function finishTest() {
      testWindow.close();
      SimpleTest.finish();
    }
  </script>
</pre>
</body>
</html>