Bug 1709069: Test that Data URI which makes a top-level request gets updated in https-first. r=ckerschb

Differential Revision: https://phabricator.services.mozilla.com/D114086
This commit is contained in:
lyavor 2021-05-05 15:03:29 +00:00
Родитель d6010d98f2
Коммит 3e9de81554
3 изменённых файлов: 70 добавлений и 0 удалений

Просмотреть файл

@ -0,0 +1,16 @@
<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
<title>Bug 1709069: Test that Data URI which makes a top-level request gets updated in https-first</title>
</head>
<body>
<script class="testbody" type="text/javascript">
window.onload = (event) => {
let myLoc = window.location.href;
window.opener.parent.postMessage({location: myLoc}, "*");
window.close();
};
</script>
</body>
</html>

Просмотреть файл

@ -11,3 +11,6 @@ support-files =
scheme=https
support-files =
file_redirect.sjs
[test_data_uri.html]
support-files =
file_data_uri.html

Просмотреть файл

@ -0,0 +1,51 @@
<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
<title>Bug 1709069: Test that Data URI which makes a top-level request gets updated in https-first</title>
<script src="/tests/SimpleTest/SimpleTest.js"></script>
<link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" />
</head>
<body>
<iframe style="width:100%;" id="testframe"></iframe>
<script class="testbody" type="text/javascript">
SimpleTest.waitForExplicitFinish();
window.addEventListener("message", receiveMessage);
// HTML site which makes a top-level http request
const HTML = `
<html>
<body>
DATA HTML
<script>
window.open("http://example.com/tests/dom/security/test/https-first/file_data_uri.html");
<\/script>
<\/body>
<\/html>
`;
const DATA_HTML = "data:text/html, " + HTML;
// Verify that data uri top-level request got upgraded to https and
// the reached location is correct
async function receiveMessage(event){
let data = event.data;
is(data.location, "https://example.com/tests/dom/security/test/https-first/file_data_uri.html",
"Reached the correct location");
window.removeEventListener("message", receiveMessage);
SimpleTest.finish();
}
function test_toplevel_https() {
document.getElementById("testframe").src = DATA_HTML;
}
SpecialPowers.pushPrefEnv({ set: [
["dom.security.https_first", true],
]}, test_toplevel_https);
</script>
</body>
</html>