blob: 2955fdc46e3023ebbc26d7acbd7ae416ab6fb655 (
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
|
<!--
Any copyright is dedicated to the Public Domain.
http://creativecommons.org/publicdomain/zero/1.0/
-->
<!DOCTYPE html>
<script>
function ok(cond, msg) {
window.parent.postMessage({status: "ok", data: cond, msg}, "*");
}
function finish() {
window.parent.postMessage({status: "done"}, "*");
}
function testSharedWorker() {
var sw = new SharedWorker("importForeignScripts_worker.js");
sw.port.onmessage = function(e) {
if (e.data == "finish") {
finish();
return;
}
ok(e.data === "good", "mixed content for shared workers is correctly blocked");
};
sw.onerror = function() {
ok(false, "Error on shared worker ");
};
sw.port.postMessage("start");
}
var worker = new Worker("importForeignScripts_worker.js");
worker.onmessage = function(e) {
if (e.data == "finish") {
testSharedWorker();
return;
}
ok(e.data === "good", "mixed content is correctly blocked");
}
worker.onerror = function() {
ok(false, "Error on worker");
}
worker.postMessage("start");
</script>
|