summaryrefslogtreecommitdiffstats
path: root/security/manager/ssl/tests/mochitest/mixedcontent/test_bug329869.html
blob: ccb9a8d9cf376896adb5757e3711a31286409478 (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>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");
      newElement.src = "http://example.org/tests/security/manager/ssl/tests/" +
                       "mochitest/mixedcontent/bug329869.js";
      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>