LibWeb: Implement AbstractWorker

This effectively implements Worker.onerror, and in future
SharedWorker.onerror.
This commit is contained in:
Jamie Mansfield 2024-09-01 12:52:14 +01:00 committed by Andreas Kling
commit 3440d2b843
Notes: github-actions[bot] 2024-09-02 11:12:17 +00:00
6 changed files with 65 additions and 1 deletions

View file

@ -0,0 +1,4 @@
// https://html.spec.whatwg.org/multipage/workers.html#abstractworker
interface mixin AbstractWorker {
attribute EventHandler onerror;
};