mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-05-02 04:27:12 +02:00
These no longer serve any purpose now that we run the IDLGenerator on all of these files at once.
21 lines
882 B
Plaintext
21 lines
882 B
Plaintext
// https://html.spec.whatwg.org/multipage/workers.html#workernavigator
|
|
[Exposed=Worker]
|
|
interface WorkerNavigator {
|
|
// https://w3c.github.io/media-capabilities/#dom-workernavigator-mediacapabilities
|
|
[SameObject] readonly attribute MediaCapabilities mediaCapabilities;
|
|
|
|
// https://wicg.github.io/serial/#extensions-to-the-workernavigator-interface
|
|
[SameObject] readonly attribute Serial serial;
|
|
|
|
// https://w3c.github.io/ServiceWorker/#navigator-serviceworker
|
|
[SecureContext, SameObject] readonly attribute ServiceWorkerContainer serviceWorker;
|
|
};
|
|
|
|
Navigator includes GlobalPrivacyControl;
|
|
WorkerNavigator includes NavigatorID;
|
|
WorkerNavigator includes NavigatorLanguage;
|
|
WorkerNavigator includes NavigatorOnLine;
|
|
WorkerNavigator includes NavigatorConcurrentHardware;
|
|
WorkerNavigator includes NavigatorStorage;
|
|
WorkerNavigator includes NavigatorDeviceMemory;
|