diff options
Diffstat (limited to 'testing/web-platform/tests/html/cross-origin-opener-policy/popup-unsafe-none-with-same-site.https.html')
-rw-r--r-- | testing/web-platform/tests/html/cross-origin-opener-policy/popup-unsafe-none-with-same-site.https.html | 58 |
1 files changed, 58 insertions, 0 deletions
diff --git a/testing/web-platform/tests/html/cross-origin-opener-policy/popup-unsafe-none-with-same-site.https.html b/testing/web-platform/tests/html/cross-origin-opener-policy/popup-unsafe-none-with-same-site.https.html new file mode 100644 index 0000000000..d1b6b60d7c --- /dev/null +++ b/testing/web-platform/tests/html/cross-origin-opener-policy/popup-unsafe-none-with-same-site.https.html @@ -0,0 +1,58 @@ +<!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> |