Source code
Revision control
Copy as Markdown
Other Tools
Test Info: Warnings
- This test gets skipped with pattern: http3 OR http2
 - Manifest: security/manager/ssl/tests/mochitest/mixedcontent/mochitest.toml
 
<!DOCTYPE HTML>
<html>
<head>
  <title>dymanic script load</title>
  <script src="/tests/SimpleTest/SimpleTest.js"></script>
  <script type="text/javascript" src="mixedContentTest.js"></script>
  <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" />
  <script class="testbody" type="text/javascript">
  "use strict";
  hasMixedActiveContent = true;
  async function runTest()
  {
    await isSecurityState("secure");
    window.setTimeout(function () {
      let newElement = document.createElement("script");
      document.body.appendChild(newElement);
    }, 0);
  }
  async function afterNavigationTest()
  {
    await isSecurityState("secure", "when we navigate back, we're loading our secure page again and not loading an insecure script, so our security state is secure");
    finish();
  }
  </script>
</head>
<body>
</body>
</html>