mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
9819d5341a
--HG-- rename : security/manager/ssl/tests/mochitest/test_bug413909.html => security/manager/ssl/tests/mochitest/bugs/test_bug413909.html
42 lines
1.2 KiB
HTML
42 lines
1.2 KiB
HTML
<!DOCTYPE HTML>
|
|
<html>
|
|
<head>
|
|
<title>img.src changes to unsecure test</title>
|
|
<script type="text/javascript" src="/MochiKit/packed.js"></script>
|
|
<script type="text/javascript" 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">
|
|
|
|
// This test, as is, equals to https://kuix.de/misc/test17/358438.php
|
|
|
|
function runTest()
|
|
{
|
|
isSecurityState("secure");
|
|
document.getElementById("image1").src =
|
|
"http://example.com/tests/security/ssl/mixedcontent/moonsurface.jpg";
|
|
|
|
window.setTimeout(function() {
|
|
isSecurityState("broken", "src='http://...' changed to broken");
|
|
finish();
|
|
}, 500);
|
|
}
|
|
|
|
function afterNavigationTest()
|
|
{
|
|
is(document.getElementById("image1").src,
|
|
"https://example.com/tests/security/ssl/mixedcontent/moonsurface.jpg",
|
|
"img.src secure again");
|
|
isSecurityState("secure", "security full after navigation");
|
|
finish();
|
|
}
|
|
|
|
</script>
|
|
</head>
|
|
|
|
<body>
|
|
<img id="image1" src="https://example.com/tests/security/ssl/mixedcontent/moonsurface.jpg" />
|
|
</body>
|
|
</html>
|