1
0
Fork 0
firefox/dom/security/test/https-first/file_data_uri.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

16 lines
403 B
HTML

<!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 = () => {
let myLoc = window.location.href;
window.opener.parent.postMessage({location: myLoc}, "*");
window.close();
};
</script>
</body>
</html>