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.
17 lines
664 B
Plaintext
17 lines
664 B
Plaintext
// https://w3c.github.io/ServiceWorker/#serviceworkerglobalscope
|
|
[Global=(Worker,ServiceWorker), Exposed=ServiceWorker, SecureContext]
|
|
interface ServiceWorkerGlobalScope : WorkerGlobalScope {
|
|
[FIXME, SameObject] readonly attribute Clients clients;
|
|
[FIXME, SameObject] readonly attribute ServiceWorkerRegistration registration;
|
|
[FIXME, SameObject] readonly attribute ServiceWorker serviceWorker;
|
|
|
|
[FIXME, NewObject] Promise<undefined> skipWaiting();
|
|
|
|
attribute EventHandler oninstall;
|
|
attribute EventHandler onactivate;
|
|
attribute EventHandler onfetch;
|
|
|
|
attribute EventHandler onmessage;
|
|
attribute EventHandler onmessageerror;
|
|
};
|