tor-browser

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

fetch-request-xhr-sync-worker.js (191B)


      1 'use strict';
      2 
      3 self.onfetch = function(event) {
      4  if (event.request.url.indexOf('non-existent-file.txt') !== -1) {
      5    event.respondWith(new Response('Response from service worker'));
      6  }
      7 };