1
0
Fork 0
mirror of https://github.com/LadybirdBrowser/ladybird.git synced 2025-06-11 02:13:56 +09:00
ladybird/Userland/Libraries/LibWeb/HTML/AbstractWorker.idl
Jamie Mansfield 3440d2b843 LibWeb: Implement AbstractWorker
This effectively implements Worker.onerror, and in future
SharedWorker.onerror.
2024-09-02 13:10:44 +02:00

4 lines
142 B
Text

// https://html.spec.whatwg.org/multipage/workers.html#abstractworker
interface mixin AbstractWorker {
attribute EventHandler onerror;
};