tor-browser

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

bug1664007.js (207B)


      1 function f(depth) {
      2    function Obj() {
      3        this.prop = null;
      4        this.prop = this;
      5    }
      6    var o = new Obj();
      7    assertEq(o.prop, o);
      8    if (depth < 1000) {
      9        f(depth + 1);
     10    }
     11 }
     12 f(0);