mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-06-07 21:17:07 +09:00

With this change we can again open login form https://discord.com/login instead of failing in js because `caches.open()` is not defined.
15 lines
615 B
Text
15 lines
615 B
Text
#import <Fetch/Request.idl>
|
|
|
|
// 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;
|
|
//};
|