16 lines
739 B
HTML
16 lines
739 B
HTML
<!doctype html>
|
|
<meta charset="utf-8">
|
|
<script src="/resources/testdriver.js"></script>
|
|
<script src="/resources/testdriver-vendor.js"></script>
|
|
<script>
|
|
(async function() {
|
|
test_driver.set_test_context(window.top);
|
|
|
|
// Step 5 (partitioned-popins/partitioned-popins.cookies-*.tentative.sub.https.window.js)
|
|
const id = (new URLSearchParams(window.location.search)).get("id");
|
|
document.cookie = "ThirdPartyStrict=" + id + "; Partitioned; SameSite=Strict; Secure";
|
|
document.cookie = "ThirdPartyLax=" + id + "; Partitioned; SameSite=Lax; Secure";
|
|
document.cookie = "ThirdPartyNone=" + id + "; Partitioned; SameSite=None; Secure";
|
|
window.top.postMessage({type: "iframe-set", message: "Set third-party data"}, "*");
|
|
})();
|
|
</script>
|