tor-browser

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

bug1133530.js (367B)


      1 // |jit-test| error: InternalError
      2 x = {}; 
      3 y = x;
      4 if (x !== y) {}
      5 Object.defineProperty(this, "x", {
      6    get: function() {
      7    Object.defineProperty(this, "y", {
      8        get: function() {
      9        return Proxy(this.y)
     10        }
     11    });
     12    }
     13 })
     14 x;
     15 g = newGlobal({newCompartment: true});
     16 g.parent = this
     17 g.eval("Debugger(parent).onExceptionUnwind=(function(){})")
     18 y;