mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-06-08 05:27:14 +09:00

Shared workers are essentially just workers that may be accessed from scripts within the same origin. There are plenty of FIXMEs here (mostly building on existing worker FIXMEs that are already in place), but this lets us run the shared worker variants of WPT tests.
15 lines
511 B
Text
15 lines
511 B
Text
#import <DOM/EventTarget.idl>
|
|
#import <HTML/AbstractWorker.idl>
|
|
#import <HTML/MessagePort.idl>
|
|
#import <HTML/Worker.idl>
|
|
|
|
// https://html.spec.whatwg.org/multipage/workers.html#sharedworker
|
|
[Exposed=Window]
|
|
interface SharedWorker : EventTarget {
|
|
// FIXME: "DOMString scriptURL" should be "(TrustedScriptURL or USVString) scriptURL".
|
|
constructor(DOMString scriptURL, optional (DOMString or WorkerOptions) options = {});
|
|
|
|
readonly attribute MessagePort port;
|
|
};
|
|
|
|
SharedWorker includes AbstractWorker;
|