summaryrefslogtreecommitdiffstats
path: root/browser/base/content/test/general/test_no_mcb_on_http_site_font.html
blob: 28a9cb2c0370137c832269124a8fb169da2d7e71 (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
45
46
47
<!DOCTYPE HTML>
<html>
<!--
  Test 2 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 2 for Bug 909920</title>
  <link rel="stylesheet" type="text/css" href="https://example.com/browser/browser/base/content/test/general/test_no_mcb_on_http_site_font.css" />
<script type="application/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>

<script type="text/javascript">
  function checkLoadStates() {
   var ui = SpecialPowers.wrap(window)
            .QueryInterface(SpecialPowers.Ci.nsIInterfaceRequestor)
             .getInterface(SpecialPowers.Ci.nsIWebNavigation)
             .QueryInterface(SpecialPowers.Ci.nsIDocShell)
             .securityUI;

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

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

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

   var blockedMixedDisplay = ui &&
     !!(ui.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 font";
   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 font
  </div>
</body>
</html>