LibWeb/ServiceWorker: Implement ServiceWorkerGlobalScope event handlers

This commit is contained in:
Shannon Booth 2025-04-25 17:41:40 +12:00 committed by Andreas Kling
commit 3bb36d9379
Notes: github-actions[bot] 2025-04-25 09:03:54 +00:00
3 changed files with 83 additions and 7 deletions

View file

@ -9,10 +9,10 @@ interface ServiceWorkerGlobalScope : WorkerGlobalScope {
[FIXME, NewObject] Promise<undefined> skipWaiting();
[FIXME] attribute EventHandler oninstall;
[FIXME] attribute EventHandler onactivate;
[FIXME] attribute EventHandler onfetch;
attribute EventHandler oninstall;
attribute EventHandler onactivate;
attribute EventHandler onfetch;
[FIXME] attribute EventHandler onmessage;
[FIXME] attribute EventHandler onmessageerror;
attribute EventHandler onmessage;
attribute EventHandler onmessageerror;
};