1
0
Fork 0
firefox/devtools/shared/commands/resource/tests/test_worker.js
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

15 lines
448 B
JavaScript

/* Any copyright is dedicated to the Public Domain.
http://creativecommons.org/publicdomain/zero/1.0/ */
"use strict";
console.log("[WORKER] started", globalThis.location.toString(), globalThis);
globalThis.onmessage = function (e) {
const { type, message } = e.data;
if (type === "log-in-worker") {
// Printing `e` so we can check that we have an object and not a stringified version
console.log("[WORKER]", message, e);
}
};