tor-browser

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

bug1121083.js (303B)


      1 // |jit-test| exitstatus: 6; skip-if: getBuildConfiguration("wasi")
      2 
      3 g = newGlobal({newCompartment: true});
      4 g.parent = this;
      5 g.eval("Debugger(parent).onExceptionUnwind = function () {};");
      6 
      7 function f(x) {
      8    if (x === 0) {
      9        return;
     10    }
     11    f(x - 1);
     12    f(x - 1);
     13 }
     14 timeout(0.00001);
     15 f(100);