Source code

Revision control

Copy as Markdown

Other Tools

Test Info: Warnings

<!DOCTYPE HTML>
<html>
<head>
<title>img.src changes to unsecure redirect 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";
async function runTest()
{
await isSecurityState("secure");
document.getElementById("image1").src =
window.setTimeout(async () => {
await isSecurityState("broken", "src='redirect to unsecure' changed to broken");
finish();
}, 500);
}
async function afterNavigationTest()
{
is(document.getElementById("image1").src,
"img.src secure again");
await isSecurityState("secure", "security full after navigation");
finish();
}
</script>
</head>
<body>
</body>
</html>