1
0
Fork 0
firefox/testing/web-platform/tests/html/cross-origin-opener-policy/popup-unsafe-none-with-same-site.https.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

58 lines
1.4 KiB
HTML

<!doctype html>
<meta charset=utf-8>
<meta name=timeout content=long>
<script src=/resources/testharness.js></script>
<script src=/resources/testharnessreport.js></script>
<script src="/common/dispatcher/dispatcher.js"></script>
<script src="/common/get-host-info.sub.js"></script>
<script src="/common/utils.js"></script>
<script src="resources/common.js"></script>
<script src="resources/popup-test.js"></script>
<script>
[
{
"title": "popup with empty coop",
"coop": "",
"opener": "preserved"
},
{
"title": "popup with coop unsafe-none",
"coop": "unsafe-none",
"opener": "preserved"
},
{
"title": "popup with jibberish coop",
"coop": "jibberish",
"opener": "preserved"
},
{
"title": "popup with obsolete coop",
"coop": "same-site",
"opener": "preserved"
},
{
"title": "popup with obsolete coop 2",
"coop": "same-site unsafe-allow-outgoing",
"opener": "preserved"
},
{
"title": "popup with obsolete coop 3",
"coop": "same-origin unsafe-allow-outgoing",
"opener": "preserved"
},
{
"title": "popup with coop same-origin",
"coop": "same-origin",
"opener": "severed"
},
{
"title": "popup with coop same-origin-allow-popups",
"coop": "same-origin-allow-popups",
"opener": "severed"
}
].forEach(variant => {
popup_test(`Same-site ${variant.title}`, SAME_SITE, { coop: variant.coop }, variant.opener);
});
</script>