mirror of
https://github.com/SerenityOS/serenity
synced 2026-05-05 06:32:26 +02:00
This effectively implements Worker.onerror, and in future SharedWorker.onerror. (cherry picked from commit 3440d2b843331fca7392d29ea1b776935d1310de)
5 lines
142 B
Plaintext
5 lines
142 B
Plaintext
// https://html.spec.whatwg.org/multipage/workers.html#abstractworker
|
|
interface mixin AbstractWorker {
|
|
attribute EventHandler onerror;
|
|
};
|