scope-page.html (390B)
1 <!-- Any copyright is dedicated to the Public Domain. 2 http://creativecommons.org/publicdomain/zero/1.0/ --> 3 <!DOCTYPE HTML> 4 <html> 5 <head> 6 <meta charset="UTF-8"> 7 <title>Service worker test</title> 8 </head> 9 <body> 10 <script type="text/javascript"> 11 "use strict"; 12 13 window.sw = navigator.serviceWorker.register("empty-sw.js", { 14 scope: "./scope-page.html", 15 }); 16 17 </script> 18 </body> 19 </html>