mirror of
https://github.com/roytam1/basilisk55.git
synced 2026-05-27 21:38:33 +00:00
22 lines
715 B
HTML
22 lines
715 B
HTML
<!DOCTYPE html>
|
|
<script src="../server-locations.sub.js"></script>
|
|
<script>
|
|
var w1 = new Worker(http_dir + "support/dedicated-worker-script.js");
|
|
w1.onmessage = function(e) {
|
|
parent.postMessage({ type: "http", error: false,
|
|
isSecureContext: e.data }, "*");
|
|
};
|
|
w1.onerror = function(e) {
|
|
parent.postMessage({ type: "http", error: true }, "*");
|
|
};
|
|
|
|
var w2 = new Worker(https_dir + "support/dedicated-worker-script.js");
|
|
w2.onmessage = function(e) {
|
|
parent.postMessage({ type: "https", error: false,
|
|
isSecureContext: e.data }, "*");
|
|
};
|
|
w2.onerror = function(e) {
|
|
parent.postMessage({ type: "https", error: true }, "*");
|
|
}
|
|
</script>
|