summaryrefslogtreecommitdiffstats
path: root/dom/serviceworkers/test/notification/register.html
diff options
context:
space:
mode:
Diffstat (limited to 'dom/serviceworkers/test/notification/register.html')
-rw-r--r--dom/serviceworkers/test/notification/register.html11
1 files changed, 11 insertions, 0 deletions
diff --git a/dom/serviceworkers/test/notification/register.html b/dom/serviceworkers/test/notification/register.html
new file mode 100644
index 0000000000..b7df73bede
--- /dev/null
+++ b/dom/serviceworkers/test/notification/register.html
@@ -0,0 +1,11 @@
+<!DOCTYPE html>
+<script>
+ function done() {
+ parent.callback();
+ }
+
+ navigator.serviceWorker.ready.then(done);
+ navigator.serviceWorker.register("../notification_get_sw.js", {scope: "."}).catch(function(e) {
+ dump("Registration failure " + e.message + "\n");
+ });
+</script>