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>All secure anti-regression check</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" />
  <link rel="stylesheet" type="text/css"
  <script class="testbody" type="text/javascript">
  "use strict";
  // Navigation test goes over an insecure page, test state leak
  navigateToInsecure = true;
  async function runTest()
  {
    await isSecurityState("secure", "insecure <img> load breaks security");
    finish();
  }
  async function afterNavigationTest()
  {
    await isSecurityState("secure", "security still broken after navigation");
    finish();
  }
  </script>
</head>
<body>
  <img src="https://example.com/tests/security/manager/ssl/tests/mochitest/mixedcontent/moonsurface.jpg" />
  <img src="https://example.com/tests/security/manager/ssl/tests/mochitest/mixedcontent/imgsecredirect.sjs" />
  <iframe src="https://example.com/tests/security/manager/ssl/tests/mochitest/mixedcontent/iframesecredirect.sjs" />
</body>
</html>