tor-browser

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

shared-storage-worklet.js (266B)


      1 class WriteOperation {
      2  async run() {
      3    return this.sharedStorage.set("prerender", true);
      4  }
      5 }
      6 
      7 class SelectURLOperation {
      8  async run() {
      9    return 0;
     10  }
     11 }
     12 
     13 register('test-prerender', WriteOperation);
     14 register('test-prerender-selection', SelectURLOperation);