tor-browser

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

bug867946.js (135B)


      1 // |jit-test| error: InternalError: too much recursion
      2 b = {};
      3 b.__proto__ = evalcx("lazy");
      4 function g() {
      5    g(b.toString())
      6 }
      7 g();