web api instance property
ExtendableCookieChangeEvent: deleted property
Secure contextAvailable in workers
The deleted read-only property of the ExtendableCookieChangeEvent interface returns any cookies that have been deleted by the given ExtendableCookieChangeEvent instance.
Value
An array of objects containing the deleted cookie(s). Each object contains the following properties:
-
name- : A string containing the name of the cookie.
-
value- : A string containing the value of the cookie.
-
domain- : A string containing the domain of the cookie.
-
path- : A string containing the path of the cookie.
-
expires- : A timestamp, given as Unix time in milliseconds, containing the expiration date of the cookie.
-
secure- : A
Booleanindicating whether the cookie is used only in a secure context (HTTPS rather than HTTP).
- : A
-
sameSite- : One of the following
SameSitevalues:"strict"- : Cookies will only be sent in a first-party context and not be sent with requests initiated by third party websites.
"lax"- : Cookies are not sent on normal cross-site subrequests (for example to load images or frames into a third party site), but are sent when a user is navigating within the origin site (i.e., when following a link).
"none"- : Cookies will be sent in all contexts.
- : One of the following
-
partitioned- : A boolean indicating whether the cookie is a partitioned cookie (
true) or not (false). See Cookies Having Independent Partitioned State (CHIPS) for more information.
- : A boolean indicating whether the cookie is a partitioned cookie (
Examples
In this example when the cookie is deleted the event listener logs the first item in the deleted property to the console. It contains an object representing the cookie that has just been deleted.
self.addEventListener("cookiechange", (event) => {
console.log(event.deleted[0]);
});
Specifications
SpecificationsStandards references are available on the canonical MDN page.
Browser compatibility
Browser compatibilityCompatibility data is available on the canonical MDN page.