mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-12-08 06:09:58 +00:00
22 lines
613 B
Text
22 lines
613 B
Text
|
|
#import <DOM/EventTarget.idl>
|
||
|
|
#import <DOM/EventHandler.idl>
|
||
|
|
#import <HTML/Window.idl>
|
||
|
|
#import <ServiceWorker/ServiceWorkerGlobalScope.idl>
|
||
|
|
|
||
|
|
// https://cookiestore.spec.whatwg.org/#cookiestore
|
||
|
|
[Exposed=(ServiceWorker,Window), SecureContext]
|
||
|
|
interface CookieStore : EventTarget {
|
||
|
|
|
||
|
|
};
|
||
|
|
|
||
|
|
// https://cookiestore.spec.whatwg.org/#Window
|
||
|
|
[SecureContext]
|
||
|
|
partial interface Window {
|
||
|
|
[SameObject] readonly attribute CookieStore cookieStore;
|
||
|
|
};
|
||
|
|
|
||
|
|
// https://cookiestore.spec.whatwg.org/#ServiceWorkerGlobalScope
|
||
|
|
partial interface ServiceWorkerGlobalScope {
|
||
|
|
[SameObject] readonly attribute CookieStore cookieStore;
|
||
|
|
};
|