tor-browser

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

bug1232859.js (215B)


      1 // |jit-test| error:recursion
      2 x = /x/;
      3 z = [];
      4 y = Object.defineProperty(z, "valueOf", {
      5    get: function() {
      6        +y;
      7        for (var i = 0; i < 1; i++) {
      8            a = x.exec(0);
      9        }
     10    }
     11 })
     12 z + '';