tor-browser

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

bug1299121.js (242B)


      1 var g = newGlobal({newCompartment: true});
      2 g.parent = this;
      3 g.eval("(" + function() {
      4    var dbg = new Debugger(parent);
      5    dbg.onExceptionUnwind = function(frame) {
      6        frame.eval("h = 3");
      7    };
      8 } + ")()");
      9 g = function h() { }
     10 g();