blob: a7ae5a9e3b86f982a39235d7571b6ffa7865c873 [file] [log] [blame]
<!DOCTYPE html>
<html>
<head>
<script src="../resources/cookie-utilities.js"></script>
<body>
<script>
async function runTest()
{
await resetCookies();
await setCookie("strict", "4", {"SameSite": "Strict", "Max-Age": 100, "path": "/"});
await setCookie("implicit-strict", "4", {"SameSite": null, "Max-Age": 100, "path": "/"});
await setCookie("strict-because-invalid-SameSite-value", "4", {"SameSite": "invalid", "Max-Age": 100, "path": "/"});
await setCookie("lax", "4", {"SameSite": "Lax", "Max-Age": 100, "path": "/"});
window.location.href = "http://localhost:8000/resources/echo-iframe-src.py?src=http%3A//127.0.0.1%3A8000/cookies/same-site/resources/click-hyperlink.py%3Fhref%3Dfetch-after-top-level-navigation-initiated-from-iframe-in-cross-origin-page.py%26target%3D_top";
}
runTest();
</script>
</body>
</html>