tor-browser

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

bug1685290.js (171B)


      1 with ({}) {}
      2 
      3 function test(s) {
      4    "".replace(/x/, s);
      5 }
      6 
      7 for (var i = 0; i < 20; i++) {
      8    test("");
      9 }
     10 
     11 try {
     12    test(new Proxy({}, { get: invalidate }));
     13 } catch {}