summaryrefslogtreecommitdiffstats
path: root/browser/base/content/test/siteIdentity/test_mcb_double_redirect_image.html
blob: adadf019444df23bd55c3bd941bd2074126baa8e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!DOCTYPE HTML>
<html>
<!--
  Test 7-9 for Bug 1082837 - See file browser_mcb_redirect.js for description.
  https://bugzilla.mozilla.org/show_bug.cgi?id=1082837
-->
<head>
  <meta charset="utf-8">
  <title>Bug 1082837</title>
  <script>
    function image_loaded() {
      document.getElementById("mctestdiv").innerHTML = "image loaded";
    }
    function image_blocked() {
      document.getElementById("mctestdiv").innerHTML = "image blocked";
    }
  </script>
</head>
<body>
  <div id="mctestdiv"></div>
  <img src="https://example.com/browser/browser/base/content/test/siteIdentity/test_mcb_redirect.sjs?image_redirect_http_sjs" onload="image_loaded()" onerror="image_blocked()" ></image>
</body>
</html>