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
Update article: View, edit, and delete cookies (#2164)
* add inline icons
* add new screenshots
* fix link to screenshot
* add screenshot, tweak
* fix note and date
* add info for SameParty and Partition Key
* add original screenshots, roll back procedure step
* touch date
* delete Focus mode files for cookies doc
* removed Focus Mode icon
* Apply suggestions from code review
commit suggestions from Michael
Co-authored-by: Michael Hoffman <[email protected]>
* Apply suggestions from code review
changes from Michael and Patrick
Co-authored-by: Michael Hoffman <[email protected]>
Co-authored-by: Patrick Brosset <[email protected]>
* Apply suggestions from code review
accept
Co-authored-by: Michael Hoffman <[email protected]>
* Apply suggestions from code review
edits from Michael
Co-authored-by: Michael Hoffman <[email protected]>
Co-authored-by: Michael Hoffman <[email protected]>
Co-authored-by: Patrick Brosset <[email protected]>
1.Open DevTools on the webpage you want to edit. For example, right-click the page and then select **Inspect**, or press `F12`. For additional ways, see [Open DevTools](/microsoft-edge/devtools-guide-chromium/open).
34
34
35
-
1. Click the **Application** tab to open the **Application**panel. The **Manifest** pane opens:
35
+
2. Click the **Application** tab to open the **Application**tool. The **Manifest** pane opens:
@@ -58,43 +57,46 @@ The **Cookies** table contains the following fields:
58
57
59
58
***Size**. The size, in bytes, of the cookie.
60
59
61
-
***HTTP**. If true, this field indicates that the cookie should only be used over HTTP, and JavaScript modification isn't allowed. See [HttpOnly cookies](https://developer.mozilla.org/docs/Web/HTTP/Cookies#Secure_and_HttpOnly_cookies).
60
+
***HttpOnly**. If `true`, this field indicates that the cookie should only be used over HTTP, and JavaScript modification isn't allowed. See [HttpOnly cookies](https://developer.mozilla.org/docs/Web/HTTP/Cookies#Secure_and_HttpOnly_cookies).
62
61
63
-
***Secure**. If true, this field indicates that the cookie must be sent to the server only over a secure, HTTPS connection. See [Secure cookies](https://developer.mozilla.org/docs/Web/HTTP/Cookies#Secure_and_HttpOnly_cookies).
62
+
***Secure**. If `true`, this field indicates that the cookie must be sent to the server only over a secure, HTTPS connection. See [Secure cookies](https://developer.mozilla.org/docs/Web/HTTP/Cookies#Secure_and_HttpOnly_cookies).
64
63
65
64
***SameSite**. Contains `strict` or `lax` if the cookie is using the experimental [Samesite](https://developer.mozilla.org/docs/Web/HTTP/Cookies#SameSite_cookies) attribute.
66
65
67
-
***Priority**. Contains `low`, `medium` (default), or `high` if the cookie is using the deprecated [cookie Priority](https://bugs.chromium.org/p/chromium/issues/detail?id=232693) attribute.
66
+
***SameParty**. This attribute provides web developers a means to annotate cookies that are allowed to be set or sent in same-party, cross-site contexts.
67
+
68
+
***Partition Key**. A _partition key_ is a property or path within a document that can be used to distribute data within a document yet store the data together. Multiple pieces of data that are spread throughout a document and that have the same partition key value are logically grouped together and stored in the same physical partition.
69
+
70
+
***Priority**. Contains `low`, `medium` (default), or `high` if the cookie is using the deprecated [Cookie Priority](https://bugs.chromium.org/p/chromium/issues/detail?id=232693) attribute.
0 commit comments