tor-browser

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

bug1404710.js (256B)


      1 stackTest(new Function(`
      2    var g = newGlobal();
      3    var dbg = new Debugger(g);
      4    dbg.onDebuggerStatement = function (frame) {
      5        frame.evalWithBindings("x", {x: 2}).return;
      6    };
      7    g.eval("function f(y) { debugger; }");
      8    g.f(3);
      9 `), false);