tor-browser

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

bug1232655.js (221B)


      1 g = newGlobal({newCompartment: true});
      2 g.log = "";
      3 Debugger(g).onDebuggerStatement = frame => frame.eval("log += this.Math.toString();");
      4 g.eval("(function() { with ({}) debugger })()");
      5 assertEq(g.log, "[object Math]");