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>innerHTML changes to unsecure test</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";
  SimpleTest.requestFlakyTimeout("Timeout in mixedContentTest");
  async function runTest()
  {
    await isSecurityState("secure");
    document.getElementById("buddy").innerHTML =
      "<img id='image1' src='http://example.com/tests/security/manager/ssl/tests/mochitest/mixedcontent/moonsurface.jpg' />";
    window.setTimeout(async () => {
      await isSecurityState("broken", "innerHTML loading insecure changed to broken");
      finish();
    }, 500);
  }
  async function afterNavigationTest()
  {
    is(document.getElementById("buddy").innerHTML, "\n", "innerHTML back to previous");
    await isSecurityState("secure");
    finish();
  }
  </script>
</head>
<body id="buddy"></body></html>