<!DOCTYPEHTML>
<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>
<iframestyle="width:100%;" id="testframe"></iframe>
<script class="testbody" type="text/javascript">
// 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;
}
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.