31 lines
801 B
HTML
31 lines
801 B
HTML
<!DOCTYPE HTML>
|
|
<html>
|
|
<head>
|
|
<title>background unsecure test</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" />
|
|
|
|
<script class="testbody" type="text/javascript">
|
|
"use strict";
|
|
|
|
// This test, as is, equals to https://kuix.de/misc/test17/358438.php
|
|
|
|
async function runTest()
|
|
{
|
|
await isSecurityState("broken", "security broken");
|
|
finish();
|
|
}
|
|
|
|
async function afterNavigationTest()
|
|
{
|
|
await isSecurityState("broken", "security after navigation");
|
|
finish();
|
|
}
|
|
|
|
</script>
|
|
</head>
|
|
|
|
<body background="http://example.com/tests/security/manager/ssl/tests/mochitest/mixedcontent/moonsurface.jpg">
|
|
</body>
|
|
</html>
|