Ben Kelly

Results 228 comments of Ben Kelly

Storage access API is necessary even with RWS, but the RWS entry should make it auto-grant without any user prompt. Regarding the cookie phaseout flag and the older "block 3P...

The June 30, 2024 date is for an automatic grace period where 3P cookies will be restored automatically. You need to deploy the DT token before June 30 to continue...

This is the most recent information available on the DT grace period expiration: https://developers.google.com/privacy-sandbox/blog/grace-period-extension

Also please confirm you are not testing in incognito mode which uses a stricter form of 3P cookie blocking.

I recommend filing a bug at crbug.com in the "Chromium > Blink > Identity > FedCM" component.

I'd very much like to see SharedWorker on android, but it does feel like allowing SharedWorkers to be killed more frequently than a document that is visible and using the...

Am I understanding correctly that this problematic case only happens on Android when the browser is in the background? In other words, none of the connected documents are viewable by...

Reading @domenic's proposal for [extended life SharedWorker](https://gist.github.com/domenic/c5bd38339f33b49120ae11b3b4af5b9b#file-1-explainer-md) made me wonder if we could add `{ restartable: true }` option to SharedWorker. This would opt-in to allowing the browser to restart...

The idea would be that if a window is attached to a SharedWorker that is killed by a the OS killing a different process, then the browser would be free...

> Q1. What happens in Step 6 if restartable is not enabled? I was thinking on android chromium could throw an exception if `restartable: false`. Basically only restartable SharedWorker is...