script: Remove CookieListItem fields that were removed in the spec (#39170)

The spec removed all fields from CookieListItem except for name and
value

Testing: WPT tests cover this already.

Signed-off-by: Sebastian C <sebsebmc@gmail.com>
This commit is contained in:
Sebastian C 2025-09-05 12:47:42 -05:00 committed by GitHub
parent 5b9a23ebdb
commit 7ce0bd8575
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 1 additions and 38 deletions

View file

@ -55,12 +55,6 @@ dictionary CookieStoreDeleteOptions {
dictionary CookieListItem {
USVString name;
USVString value;
USVString? domain;
USVString path;
DOMHighResTimeStamp? expires;
boolean secure;
CookieSameSite sameSite;
boolean partitioned;
};
typedef sequence<CookieListItem> CookieList;