Source code

Revision control

Copy as Markdown

Other Tools

Test Info: Warnings

<!DOCTYPE HTML>
<html>
<head>
<title>body.background changes to unsecure test</title>
<script type="text/javascript" src="/MochiKit/Base.js"></script>
<script type="text/javascript" src="/MochiKit/DOM.js"></script>
<script type="text/javascript" src="/MochiKit/Style.js"></script>
<script type="text/javascript" src="/MochiKit/Signal.js"></script>
<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("secure");
document.body.background =
waitForSecurityState("broken", async () => {
await isSecurityState("broken", "document.body.background='http://...' changed to broken");
finish();
});
}
async function afterNavigationTest()
{
is(document.body.background,
"document backround secure again");
await isSecurityState("secure", "secure after re-navigation");
finish();
}
</script>
</head>
</body>
</html>