summaryrefslogtreecommitdiffstats
path: root/dom/workers/test/serviceworkers/serviceworkerinfo_iframe.html
diff options
context:
space:
mode:
Diffstat (limited to 'dom/workers/test/serviceworkers/serviceworkerinfo_iframe.html')
-rw-r--r--dom/workers/test/serviceworkers/serviceworkerinfo_iframe.html26
1 files changed, 26 insertions, 0 deletions
diff --git a/dom/workers/test/serviceworkers/serviceworkerinfo_iframe.html b/dom/workers/test/serviceworkers/serviceworkerinfo_iframe.html
new file mode 100644
index 000000000..a0a2de760
--- /dev/null
+++ b/dom/workers/test/serviceworkers/serviceworkerinfo_iframe.html
@@ -0,0 +1,26 @@
+<!DOCTYPE html>
+<html lang="en">
+ <head>
+ <meta charset="utf-8">
+ <script>
+ window.onmessage = function (event) {
+ if (event.data !== "register") {
+ return;
+ }
+ var promise = navigator.serviceWorker.register("worker.js");
+ window.onmessage = function (event) {
+ if (event.data !== "unregister") {
+ return;
+ }
+ promise.then(function (registration) {
+ registration.unregister();
+ });
+ window.onmessage = null;
+ };
+ };
+ </script>
+ </head>
+ <body>
+ This is a test page.
+ </body>
+<html>