tor-browser

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

registration-script-module.https.html (486B)


      1 <!DOCTYPE html>
      2 <title>Service Worker: Registration (module script)</title>
      3 <script src="/resources/testharness.js"></script>
      4 <script src="/resources/testharnessreport.js"></script>
      5 <script src="resources/test-helpers.sub.js"></script>
      6 <script src="resources/registration-tests-script.js"></script>
      7 <script>
      8 registration_tests_script(
      9    (script, options) => navigator.serviceWorker.register(
     10        script,
     11        Object.assign({type: 'module'}, options)),
     12    'module');
     13 </script>