tenfourfox/dom/workers/test/serviceworkers/simpleregister/index.html
Cameron Kaiser c9b2922b70 hello FPR
2017-04-19 00:56:45 -07:00

52 lines
2.3 KiB
HTML

<html>
<head></head>
<body>
<script type="text/javascript">
var expectedEvents = 2;
function eventReceived() {
window.parent.postMessage({ type: "check", status: expectedEvents > 0, msg: "updatefound received" }, "*");
if (--expectedEvents) {
window.parent.postMessage({ type: "finish" }, "*");
}
}
navigator.serviceWorker.getRegistrations().then(function(a) {
window.parent.postMessage({ type: "check", status: Array.isArray(a),
msg: "getRegistrations returns an array" }, "*");
window.parent.postMessage({ type: "check", status: a.length > 0,
msg: "getRegistrations returns an array with 1 item" }, "*");
for (var i = 0; i < a.length; ++i) {
window.parent.postMessage({ type: "check", status: a[i] instanceof ServiceWorkerRegistration,
msg: "getRegistrations returns an array of ServiceWorkerRegistration objects" }, "*");
if (a[i].scope.match(/simpleregister\//)) {
a[i].onupdatefound = function(e) {
eventReceived();
}
}
}
});
navigator.serviceWorker.getRegistration('http://mochi.test:8888/tests/dom/workers/test/serviceworkers/simpleregister/')
.then(function(a) {
window.parent.postMessage({ type: "check", status: a instanceof ServiceWorkerRegistration,
msg: "getRegistration returns a ServiceWorkerRegistration" }, "*");
a.onupdatefound = function(e) {
eventReceived();
}
});
navigator.serviceWorker.getRegistration('http://www.something_else.net/')
.then(function(a) {
window.parent.postMessage({ type: "check", status: false,
msg: "getRegistration should throw for security error!" }, "*");
}, function(a) {
window.parent.postMessage({ type: "check", status: true,
msg: "getRegistration should throw for security error!" }, "*");
});
window.parent.postMessage({ type: "ready" }, "*");
</script>
</body>
</html>