tor-browser

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

bug-906241.js (187B)


      1 // |jit-test| error: InternalError: too much recursion
      2 for (let y in []);
      3 (function f(x) {
      4    new Float64Array(new ArrayBuffer());
      5    {
      6        f(x)
      7        function t() {}
      8    }
      9 })();