tor-browser

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

bug539379.js (187B)


      1 try {
      2    // On X64 this was crashing rather than causing a "too much recursion" exception.
      3    x = /x/;
      4    (function f() {
      5        x.r = x;
      6        return f()
      7    })();
      8 } catch (e) {}