1. Cookie Store API

    An API for reading and modifying cookies. Compared to the existing `document.cookie` method, the API provides a much more modern interface, which can also be used in service workers.

  2. 'SameSite' cookie attribute

    Same-site cookies ("First-Party-Only" or "First-Party") allow servers to mitigate the risk of CSRF and information leakage attacks by asserting that a particular cookie should only be sent with requests initiated from the same registrable domain.

  3. cookiechangeevent api

  4. cookiechangeevent api: changed

  5. cookiechangeevent api: `cookiechangeevent()` constructor

  6. cookiechangeevent api: deleted

  7. cookiestore api

  8. cookiestoremanager api

  9. cookiestoremanager api: getsubscriptions

  10. cookiestoremanager api: subscribe

  11. cookiestoremanager api: unsubscribe

  12. cookiestore api: `change` event

  13. cookiestore api: delete

  14. cookiestore api: delete: `partitioned` option

  15. cookiestore api: get

  16. cookiestore api: getall

  17. cookiestore api: get: `domain` in return value

  18. cookiestore api: get: `expires` in return value

  19. cookiestore api: get: `name` in return value

  20. cookiestore api: get: `partitioned` in return value

  21. cookiestore api: get: `path` in return value

  22. cookiestore api: get: `samesite` in return value

  23. cookiestore api: get: `secure` in return value

  24. cookiestore api: get: `value` in return value

  25. cookiestore api: set

  26. cookiestore api: set: `maxage` option

  27. cookiestore api: set: `partitioned` option

  28. document api: cookie

  29. navigator api: cookieenabled

  30. serviceworkerglobalscope api: cookiestore

  31. serviceworkerregistration api: cookies

  32. window api: cookiestore

  33. headers http header: clear-site-data: `"cookies"`

  34. headers http header: cookie

  35. headers http header: set-cookie

  36. headers http header: set-cookie: cookie prefixes: `__host-` and `__secure-`

  37. headers http header: set-cookie: httponly

  38. headers http header: set-cookie: cookie prefixes: `__http-` and `__host-http-`

  39. headers http header: set-cookie: max-age

  40. headers http header: set-cookie: partitioned

  41. headers http header: set-cookie: samesite: `samesite=lax`

  42. headers http header: set-cookie: samesite: defaults to `lax`

  43. headers http header: set-cookie: samesite: `samesite=none`

  44. headers http header: set-cookie: samesite: secure attribute required if `samesite=none`

  45. headers http header: set-cookie: samesite: url scheme-aware ("schemeful")

  46. headers http header: set-cookie: samesite: `samesite=strict`