tor-browser

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

ForceRefreshChild.sys.mjs (222B)


      1 export class ForceRefreshChild extends JSWindowActorChild {
      2  constructor() {
      3    super();
      4  }
      5 
      6  handleEvent(evt) {
      7    this.sendAsyncMessage("test:event", {
      8      type: evt.type,
      9      detail: evt.details,
     10    });
     11  }
     12 }