blob: b0a72674d412aa33bb9779126abf143a7eeeee86 (
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
|
var clients = new Array();
clients.length = 0;
var broadcast = function(message) {
var length = clients.length;
for (var i = 0; i < length; i++) {
port = clients[i];
port.postMessage(message);
}
};
onconnect = function(e) {
clients.push(e.ports[0]);
if (clients.length == 1) {
clients[0].postMessage("Connected");
} else if (clients.length == 2) {
broadcast("BothConnected");
clients[0].onmessage = function(msg) {
if (msg.data == "StartFetchWithWrongIntegrity") {
// The fetch will succeed because the integrity value is invalid and we
// are looking for the console message regarding the bad integrity value.
fetch("SharedWorker_SRIFailed.html", { integrity: "abc" }).then(
function() {
clients[0].postMessage("SRI_failed");
}
);
}
};
}
};
|