Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion 6-data-storage/01-cookie/article.md
Original file line number Diff line number Diff line change
Expand Up @@ -365,7 +365,7 @@ A cookie is called "third-party" if it's placed by a domain other than the page

For instance:
1. A page at `site.com` loads a banner from another site: `<img src="https://ads.com/banner.png">`.
2. Along with the banner, the remote server at `ads.com` may set the `Set-Cookie` header with a cookie like `id=1234`. Such a cookie originates from the `ads.com` domain, and will only be visible at `ads.com`:
2. Along with the banner, the remote server at `ads.com` may set the `Set-Cookie` header with a cookie like `id=123`. Such a cookie originates from the `ads.com` domain, and will only be visible at `ads.com`:

![](cookie-third-party.svg)

Expand Down