-
Notifications
You must be signed in to change notification settings - Fork 22.7k
FF140 Relnote: Cookie Store API #39676
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
FF140 Relnote: Cookie Store API #39676
Conversation
Preview URLs External URLs (1)URL:
(comment last updated: 2025-05-26 21:10:17) |
@@ -14,11 +14,12 @@ The **Cookie Store API** is an asynchronous API for managing cookies, available | |||
|
|||
## Concepts and Usage | |||
|
|||
The existing method of getting and setting cookies involves working with {{domxref("document.cookie")}} as a string of key/value pairs. In addition to this being cumbersome and error prone, it also has a host of issues in the context of modern web development. | |||
The original method of getting and setting cookies involves working with {{domxref("document.cookie")}} to get and set cookie information as a string of key/value pairs. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Just because now we have two methods, both are "existing". Now refer to document.cookie as the original method.
This pull request has merge conflicts that must be resolved before it can be merged. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good! Just one mistype. Thank you :)
Thanks very much @pepelsbey - much appreciated. |
FF140 reenables the cookie store API in https://bugzilla.mozilla.org/show_bug.cgi?id=1958875
This adds the release note that was reverted in FF136 in #38867 (with minor modifications).
It also makes "tweaks" to the API overview.
Related docs work can be tracked in #39612