summaryrefslogtreecommitdiffstats
path: root/security/manager/ssl/tests/mochitest/mixedcontent/test_unsecureIframeMetaRedirect.html
blob: 4eebbf5b2266cc4c6558c6639bc4df2c957bc9bc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<!DOCTYPE HTML>
<html>
<head>
  <title>Unsecure redirect iframe 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";

  async function runTest()
  {
    window.setTimeout(async () =>
    {
      await isSecurityState("broken", "insecure meta-tag <iframe> load breaks security");
      finish();
    }, 500);
  }

  async function afterNavigationTest()
  {
    window.setTimeout(async () =>
    {
      await isSecurityState("broken", "security still broken after navigation");
      finish();
    }, 500);
  }

  </script>
</head>

<body>
  <iframe src="https://example.com/tests/security/manager/ssl/tests/mochitest/mixedcontent/iframeMetaRedirect.html"></iframe>
</body>
</html>