1
0
Fork 0
firefox/devtools/server/tests/chrome/suspendTimeouts_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

12 lines
488 B
JavaScript

"use strict";
// Once content sends us a port connected to the mochitest, we simply echo every
// message we receive back to content and the mochitest.
onmessage = ({ data: { mochitestPort } }) => {
onmessage = ({ data }) => {
// Send a message to both content and the mochitest, which the main thread's
// event loop will attempt to deliver as step 2).
postMessage(`worker echo to content: ${data}`);
mochitestPort.postMessage(`worker echo to port: ${data}`);
};
};