mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-26 01:35:08 +02:00
These no longer serve any purpose now that we run the IDLGenerator on all of these files at once.
19 lines
752 B
Plaintext
19 lines
752 B
Plaintext
// https://w3c.github.io/ServiceWorker/#cachestorage-interface
|
|
[SecureContext, Exposed=(Window,Worker)]
|
|
interface CacheStorage {
|
|
[NewObject] Promise<(Response or undefined)> match(RequestInfo request, optional MultiCacheQueryOptions options = {});
|
|
[NewObject] Promise<boolean> has(DOMString cacheName);
|
|
[NewObject] Promise<Cache> open(DOMString cacheName);
|
|
[NewObject] Promise<boolean> delete(DOMString cacheName);
|
|
[NewObject] Promise<sequence<DOMString>> keys();
|
|
};
|
|
|
|
dictionary MultiCacheQueryOptions : CacheQueryOptions {
|
|
DOMString cacheName;
|
|
};
|
|
|
|
// https://w3c.github.io/ServiceWorker/#self-caches
|
|
partial interface mixin WindowOrWorkerGlobalScope {
|
|
[SecureContext, SameObject] readonly attribute CacheStorage caches;
|
|
};
|