Re: [w3ctag/design-reviews] Cookie Store API (#469)

 ```
  Promise<void> set(USVString name, USVString value,
                    optional CookieStoreSetOptions options = {});
```
explicitly forces to write name (not part of options dict) with optional options, but in the getter

```
Promise<CookieListItem?> get(optional CookieStoreGetOptions options = {});

dictionary CookieStoreGetOptions {
  USVString name;
  USVString url;
  CookieMatchType matchType = "equals";
};
```
it is inside the options dict. That seems a bit inconsistent. 

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/w3ctag/design-reviews/issues/469#issuecomment-584532975

Received on Tuesday, 11 February 2020 08:58:41 UTC