tor-browser

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

bug-906236.js (155B)


      1 // |jit-test| error: too much recursion
      2 (function() {
      3    (function f(x) {
      4        return x * f(x - 1);
      5        with({})
      6        var r = ""
      7    })()
      8 })()