mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-11-10 02:01:03 +00:00
6 lines
149 B
JavaScript
6 lines
149 B
JavaScript
|
|
onmessage = function (event) {
|
||
|
|
if (event.data === "run") {
|
||
|
|
postMessage({ result: self instanceof DedicatedWorkerGlobalScope });
|
||
|
|
}
|
||
|
|
};
|