Source code
Revision control
Copy as Markdown
Other Tools
Test Info: Warnings
- This test gets skipped with pattern: http3 OR http2
- Manifest: security/manager/ssl/tests/mochitest/mixedcontent/mochitest.toml
<!DOCTYPE HTML>
<html>
<head>
<title>CSS :before styling 1</title>
<script 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:before
{
content: url(http://example.com/tests/security/manager/ssl/tests/mochitest/mixedcontent/moonsurface.jpg);
}
</style>
<script class="testbody" type="text/javascript">
"use strict";
async function runTest()
{
await isSecurityState("broken", "insecure content added by :before styling breaks security");
finish();
}
async function afterNavigationTest()
{
await isSecurityState("broken", "security still broken after navigation");
finish();
}
</script>
</head>
<body>
<p>
There is a moon surface left to this text
</p>
</body>
</html>