tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

test_sw_page.html (451B)


      1 <!DOCTYPE HTML>
      2 <html>
      3 <head>
      4  <meta charset="utf8">
      5  <title>Test sw page</title>
      6  <!-- Any copyright is dedicated to the Public Domain.
      7     - http://creativecommons.org/publicdomain/zero/1.0/ -->
      8 </head>
      9 <body>
     10 <p>Test sw page</p>
     11 
     12 <script>
     13 "use strict";
     14 
     15 // Expose a reference to the registration so that tests can unregister it.
     16 window.registrationPromise = navigator.serviceWorker.register("test_sw_page_worker.js");
     17 </script>
     18 </body>
     19 </html>