You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We don't implement the CookieStoreManager and the ServiceWorkerGlobalScope.oncookiechange event handler with its ExtendableCookieChangeEvent event because we don't want to spawn ServiceWorkers at any cookie change
To follow up on the previous point, the CookieStore.onchange event handler is also exposed to ServiceWorkers.
This is currently implemented in Firefox and enabled in Nightly.
Safari and Firefox agreed on a subset of the CookieStore API to match only the
document.cookie
behavior. The subset is the following:CookieStore.get()
/getAll()
methods. This way, we do not expose more than whatdocument.cookie
already offers. See When getting cookies only expose their name and value #238.CookieStoreManager
and theServiceWorkerGlobalScope.oncookiechange
event handler with itsExtendableCookieChangeEvent
event because we don't want to spawn ServiceWorkers at any cookie changeCookieStore.onchange
event handler is also exposed to ServiceWorkers.This is currently implemented in Firefox and enabled in Nightly.
CC @annevk
The text was updated successfully, but these errors were encountered: