Delicious Cookie 🍪
Can this partitioned cookie be deleted using JavaScript?
function setPartitionedCookie() {
document.cookie =
"cookie=delicious; Max-Age=86400; Path=/; Secure; SameSite=None; Partitioned;";
}
function deletePartitionedCookie() {
/* "Secure" and "Partitioned" attributes are required to delete the partitioned cookie in Chrome */
// document.cookie = "cookie=; Expires=Thu, 01 Jan 1970 00:00:00 UTC; Secure; Partitioned;"; // this does work in Chrome
document.cookie = "cookie=; Expires=Thu, 01 Jan 1970 00:00:00 UTC;"; // this does not work in Chrome
}