tor-browser

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

bug-1565275.js (401B)


      1 Object.defineProperty(this, "fuzzutils", {
      2    value: {
      3        evaluate: function() {},
      4    }
      5 });
      6 var g = newGlobal({
      7    newCompartment: true
      8 });
      9 g.parent = this;
     10 g.eval("(" + function() {
     11    var dbg = Debugger(parent);
     12    dbg.onEnterFrame = function(frame) {
     13        frame.onStep = function() {}
     14    }
     15 } + ")()");
     16 fuzzutils.evaluate();
     17 oomTest(new Function(), {expectExceptionOnFailure: false});