gecko/security/manager/ssl/tests/mochitest/mixedcontent/test_cssContent1.html
Honza Bambas 9819d5341a Bug 452401 - Create tests for mixed content, r=kaie
--HG--
rename : security/manager/ssl/tests/mochitest/test_bug413909.html => security/manager/ssl/tests/mochitest/bugs/test_bug413909.html
2009-02-18 14:31:31 +01:00

38 lines
881 B
HTML

<!DOCTYPE HTML>
<html>
<head>
<title>CSS conent styling 1</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" />
<style type="text/css">
p
{
content: url(http://example.com/tests/security/ssl/mixedcontent/moonsurface.jpg);
}
</style>
<script class="testbody" type="text/javascript">
function runTest()
{
isSecurityState("broken", "insecure content added by :before styling breaks security");
finish();
}
function afterNavigationTest()
{
isSecurityState("broken", "security still broken after navigation");
finish();
}
</script>
</head>
<body>
<p></p>
</body>
</html>