summaryrefslogtreecommitdiffstats
path: root/browser/base/content/test/siteIdentity/test_no_mcb_on_http_site_img.html
blob: 10aa281959c4ffc5c9aa63e9be58ad2be57d1265 (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
37
38
39
40
41
42
43
44
<!DOCTYPE HTML>
<html>
<!--
  Test 1 for Bug 909920 - See file browser_no_mcb_on_http_site.js for description.
  https://bugzilla.mozilla.org/show_bug.cgi?id=909920
-->
<head>
  <meta charset="utf-8">
  <title>Test 1 for Bug 909920</title>
  <link rel="stylesheet" type="text/css" href="https://example.com/browser/browser/base/content/test/siteIdentity/test_no_mcb_on_http_site_img.css" />
<script src="/tests/SimpleTest/SimpleTest.js"></script>

<script type="text/javascript">
  async function checkLoadStates() {
   let state = await SpecialPowers.getSecurityState(window);

   var loadedMixedActive =
     !!(state & SpecialPowers.Ci.nsIWebProgressListener.STATE_LOADED_MIXED_ACTIVE_CONTENT);
   is(loadedMixedActive, false, "OK: Should not load mixed active content!");

   var blockedMixedActive =
     !!(state & SpecialPowers.Ci.nsIWebProgressListener.STATE_BLOCKED_MIXED_ACTIVE_CONTENT);
   is(blockedMixedActive, false, "OK: Should not block mixed active content!");

   var loadedMixedDisplay =
     !!(state & SpecialPowers.Ci.nsIWebProgressListener.STATE_LOADED_MIXED_DISPLAY_CONTENT);
   is(loadedMixedDisplay, false, "OK: Should not load mixed display content!");

   var blockedMixedDisplay =
     !!(state & SpecialPowers.Ci.nsIWebProgressListener.STATE_BLOCKED_MIXED_DISPLAY_CONTENT);
   is(blockedMixedDisplay, false, "OK: Should not block mixed display content!");

   var newValue = "Verifying MCB does not trigger warning/error for an http page with https css that includes http image";
   // eslint-disable-next-line no-unsanitized/property
   document.getElementById("testDiv").innerHTML = newValue;
  }
</script>
</head>
<body onload="checkLoadStates()">
  <div class="testDiv" id="testDiv">
    Testing MCB does not trigger warning/error for an http page with https css that includes http image
  </div>
</body>
</html>