2009-02-18 05:31:31 -08:00
|
|
|
<!DOCTYPE HTML>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<title>CSS conent styling 2</title>
|
|
|
|
<script type="text/javascript" src="/MochiKit/packed.js"></script>
|
|
|
|
<script type="text/javascript" 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">
|
|
|
|
|
|
|
|
function runTest()
|
|
|
|
{
|
|
|
|
isSecurityState("secure");
|
|
|
|
document.getElementById("para").style.content =
|
|
|
|
"url('http://example.com/tests/security/ssl/mixedcontent/moonsurface.jpg')";
|
|
|
|
|
2010-08-18 10:22:48 -07:00
|
|
|
waitForSecurityState("broken", function()
|
|
|
|
{
|
2009-02-18 05:31:31 -08:00
|
|
|
isSecurityState("broken", "insecure content added by styling breaks security");
|
|
|
|
finish();
|
2010-08-18 10:22:48 -07:00
|
|
|
});
|
2009-02-18 05:31:31 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
function afterNavigationTest()
|
|
|
|
{
|
|
|
|
is(document.getElementById("para").style.content, "");
|
|
|
|
isSecurityState("secure", "security full after navigation");
|
|
|
|
finish();
|
|
|
|
}
|
|
|
|
|
|
|
|
</script>
|
|
|
|
</head>
|
|
|
|
|
|
|
|
<body>
|
|
|
|
<p id="para"></p>
|
|
|
|
</body>
|
|
|
|
</html>
|