1
0
Fork 0
firefox/security/manager/ssl/tests/mochitest/mixedcontent/test_bug521461.html
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

35 lines
1.1 KiB
HTML

<!DOCTYPE HTML>
<html>
<head>
<title>Bug 521461</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";
SimpleTest.requestFlakyTimeout("Timeout in mixedContentTest");
loadAsInsecure = true;
async function runTest()
{
window.location = "https://example.com/tests/security/manager/ssl/tests/mochitest/mixedcontent/nocontent.sjs";
window.setTimeout(async () => {
await isSecurityState("insecure", "location.href doesn't effect the security state");
is(document.body.innerHTML, "This is an unsecure page!\n", "Document has not changed content");
finish();
}, 1000);
}
async function afterNavigationTest()
{
await isSecurityState("insecure", "still not secure after navigation");
is(document.body.innerHTML, "This is an unsecure page!\n", "Document has not changed content");
finish();
}
</script>
</head>
<body>This is an unsecure page!</body></html>