ladybird/Libraries/LibWeb/HTML/SharedWorkerGlobalScope.idl

12 lines
344 B
Text
Raw Normal View History

#import <HTML/WorkerGlobalScope.idl>
// https://html.spec.whatwg.org/multipage/workers.html#sharedworkerglobalscope
[Global=(Worker,SharedWorker),Exposed=SharedWorker]
interface SharedWorkerGlobalScope : WorkerGlobalScope {
[Replaceable] readonly attribute DOMString name;
undefined close();
attribute EventHandler onconnect;
};