mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-07 08:18:41 +09:00
import FIREFOX_52_6_0esr_RELEASE from mozilla-esr52 hg repo
This commit is contained in:
commit
dcd9973243
150858 changed files with 23884658 additions and 0 deletions
46
dom/workers/test/importScripts_mixedcontent.html
Normal file
46
dom/workers/test/importScripts_mixedcontent.html
Normal file
|
|
@ -0,0 +1,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: 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>
|
||||
Loading…
Add table
Add a link
Reference in a new issue