blob: 631ac0b40f3ae0a42ab41fb7eb7b3196fe98b70f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
<!DOCTYPE HTML>
<html>
<head>
<title>Bug 1713593: HTTPS-First: Add test for mixed content blocker.</title>
</head>
<body>
<!-- Test that image gets loaded (insecure) - the *.png does not actually exist because we only care for the console message to appear-->
<img type="image/png" id="testimage" src="http://example.com/browser/dom/security/test/https-first/auto_upgrading_identity.png" />
<!-- Test that the script gets blocked. The script does not actually exist because we only care for the console message to appear-->
<script type="text/javascript" src="http://example.com/browser/dom/security/test/https-first/barfoo" >
</script>
</body>
</html>
|