mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-10-21 23:50:06 +00:00
15 lines
523 B
Text
15 lines
523 B
Text
#import <DOM/Event.idl>
|
|
#import <CookieStore/CookieStore.idl>
|
|
|
|
dictionary CookieChangeEventInit : EventInit {
|
|
CookieList changed;
|
|
CookieList deleted;
|
|
};
|
|
|
|
// https://cookiestore.spec.whatwg.org/#cookiechangeevent
|
|
[Exposed=Window, SecureContext]
|
|
interface CookieChangeEvent : Event {
|
|
constructor(DOMString type, optional CookieChangeEventInit eventInitDict = {});
|
|
[SameObject] readonly attribute FrozenArray<CookieListItem> changed;
|
|
[SameObject] readonly attribute FrozenArray<CookieListItem> deleted;
|
|
};
|