tor-browser

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

bug1015339.js (196B)


      1 function f(x, y) {
      2    for (var i=0; i<40; i++) {
      3 var stack = getBacktrace({args: true, locals: true, thisprops: true});
      4 assertEq(stack.includes("f(x = "), true);
      5 backtrace();
      6    }
      7 }
      8 f(1, 2);