mirror of
https://github.com/classilla/tenfourfox.git
synced 2025-02-06 02:30:56 +00:00
12 lines
311 B
JavaScript
12 lines
311 B
JavaScript
/**
|
|
* Any copyright is dedicated to the Public Domain.
|
|
* http://creativecommons.org/publicdomain/zero/1.0/
|
|
*/
|
|
onmessage = function(event) {
|
|
let worker = new ChromeWorker("WorkerTest_subworker.js");
|
|
worker.onmessage = function(event) {
|
|
postMessage(event.data);
|
|
}
|
|
worker.postMessage(event.data);
|
|
}
|