-
Notifications
You must be signed in to change notification settings - Fork 2.5k
Chrome 141/Firefox 140 storage access activation per origin #28682
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
Changes from 6 commits
258f40b
f762117
87efd15
6b8aeeb
30dd2a4
013858e
e615c8b
60207ab
2c160fc
8eec95a
65bbc2d
0953692
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -7278,7 +7278,8 @@ | |
| ], | ||
| "support": { | ||
| "chrome": { | ||
| "version_added": "119" | ||
| "version_added": "119", | ||
| "notes": "From version 141 onwards, activating the `storage-access` permission via `requestStorageAccess()` results in third-party cookies being sent only with requests to the calling embed's exact origin (see [bug 379030052](https://crbug.com/379030052)). Before version 141, it resulted in third-party cookies being sent with requests to the calling embed's site." | ||
| }, | ||
| "chrome_android": { | ||
| "version_added": "120" | ||
|
|
@@ -7287,15 +7288,19 @@ | |
| "version_added": "85" | ||
| }, | ||
| "firefox": { | ||
| "version_added": "65" | ||
| "version_added": "65", | ||
| "notes": "From version 140 onwards, activating the `storage-access` permission via `requestStorageAccess()` results in third-party cookies being sent only with requests to the calling embed's exact origin (see [bug 1965817](https://bugzil.la/1965817)). Before version 140, it resulted in third-party cookies being sent with requests to the calling embed's site." | ||
| }, | ||
| "firefox_android": "mirror", | ||
| "oculus": "mirror", | ||
| "opera": "mirror", | ||
| "opera_android": "mirror", | ||
| "safari": { | ||
| "version_added": "11.1", | ||
| "notes": "Client-side storage access granted per-page ([see explanation](https://developer.mozilla.org/docs/Web/API/Storage_Access_API#how_it_works))" | ||
| "notes": [ | ||
| "Client-side storage access is granted per-page ([see explanation](https://developer.mozilla.org/docs/Web/API/Storage_Access_API#how_it_works)).", | ||
| "`storage-access` activation results in third-party cookies being sent with requests to the calling embed's site." | ||
|
||
| ] | ||
| }, | ||
| "safari_ios": "mirror", | ||
| "samsunginternet_android": "mirror", | ||
|
|
||
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.
I asked internally for confirmation that this is the right bug.