blob: c0a9455ef1471ea1bbc01c9f60d1e4c12e1a2282 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
var query = window.location.search;
var bc = new BroadcastChannel("bugSharedWorkerLiftetime" + query);
bc.onmessage = msgEvent => {
var msg = msgEvent.data;
var command = msg.command;
if (command == "postToWorker") {
postToWorker(msg.workerMessage);
} else if (command == "navigate") {
window.location = msg.location;
} else if (command == "finish") {
bc.postMessage({ command: "finished" });
bc.close();
window.close();
}
};
window.onload = () => {
bc.postMessage({ command: "loaded" });
};
function debug(message) {
if (typeof message != "string") {
throw new Error("debug() only accepts strings!");
}
bc.postMessage({ command: "debug", message });
}
let worker;
function postToWorker(msg) {
if (!worker) {
worker = new SharedWorker(
"multi_sharedWorker_sharedWorker.js",
"FrameWorker"
);
worker.onerror = function (error) {
debug("Worker error: " + error.message);
error.preventDefault();
let data = {
type: "error",
message: error.message,
filename: error.filename,
lineno: error.lineno,
isErrorEvent: error instanceof ErrorEvent,
};
bc.postMessage({ command: "fromWorker", workerMessage: data });
};
worker.port.onmessage = function (message) {
debug("Worker message: " + JSON.stringify(message.data));
bc.postMessage({ command: "fromWorker", workerMessage: message.data });
};
}
debug("Posting message: " + JSON.stringify(msg));
worker.port.postMessage(msg);
}
|