mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-31 21:29:06 +00:00
LibWeb: Implement AbstractWorker
This effectively implements Worker.onerror, and in future SharedWorker.onerror.
This commit is contained in:
parent
20f68106a7
commit
3440d2b843
Notes:
github-actions[bot]
2024-09-02 11:12:17 +00:00
Author: https://github.com/jamierocks
Commit: 3440d2b843
Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/1239
6 changed files with 65 additions and 1 deletions
4
Userland/Libraries/LibWeb/HTML/AbstractWorker.idl
Normal file
4
Userland/Libraries/LibWeb/HTML/AbstractWorker.idl
Normal file
|
@ -0,0 +1,4 @@
|
|||
// https://html.spec.whatwg.org/multipage/workers.html#abstractworker
|
||||
interface mixin AbstractWorker {
|
||||
attribute EventHandler onerror;
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue