tor-browser

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

bug1452581.js (317B)


      1 // |jit-test| error:7
      2 var g = newGlobal({newCompartment: true})
      3 g.parent = this
      4 g.eval("(" + function() {
      5    Debugger(parent).onExceptionUnwind = function(frame) {
      6        frame.older
      7    }
      8 } + ")()")
      9 function f1(i) {
     10    return f2(i|0);
     11 };
     12 function f2(i) {
     13    if (i === 0) throw 7;
     14    return f1(i - 1);
     15 }
     16 f1(10);