tor-browser

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

test_service_worker.js (327B)


      1 /* Any copyright is dedicated to the Public Domain.
      2   http://creativecommons.org/publicdomain/zero/1.0/ */
      3 
      4 "use strict";
      5 
      6 // We don't need any computation in the worker,
      7 // but at least register a fetch listener so that
      8 // we force instantiating the SW when loading the page.
      9 self.onfetch = function () {
     10  // do nothing.
     11 };