зеркало из https://github.com/mozilla/gecko-dev.git
16 строки
446 B
HTML
16 строки
446 B
HTML
<!DOCTYPE html>
|
|
<script>
|
|
function ok(condition, message) {
|
|
parent.postMessage({type: "ok", status: condition, msg: message}, "*");
|
|
}
|
|
|
|
function done() {
|
|
parent.postMessage({type: "done"}, "*");
|
|
}
|
|
|
|
ok(location.protocol == "https:", "We should be loaded from HTTPS");
|
|
ok(!window.isSecureContext, "Should not be secure context");
|
|
ok(!("serviceWorker" in navigator), "ServiceWorkerContainer not availalble in insecure context");
|
|
done();
|
|
</script>
|