tor-browser

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

bug1694600.js (247B)


      1 function foo(fn, y) {
      2    var dummy = y > 0 ? 1 : 2;
      3    fn();
      4    return y * y;
      5 }
      6 
      7 function nop() {}
      8 function throws() { throw 1; }
      9 
     10 with ({}) {}
     11 for (var i = 0; i < 100; i++) {
     12    foo(nop, 0)
     13    try {
     14 foo(throws, 0x7fffffff)
     15    } catch {}
     16 }