tor-browser

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

bug1334314.js (239B)


      1 // |jit-test| error: TypeError
      2 
      3 var g = newGlobal();
      4 g.parent = this;
      5 g.eval("new Debugger(parent).onExceptionUnwind = function () { };");
      6 
      7 function f() {
      8    [[]] = [];
      9 }
     10 try {
     11    f();
     12 } catch (e) {};
     13 try {
     14    f();
     15 } catch (e) {};
     16 f();