tor-browser

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

bug621522.js (121B)


      1 /* Don't crash. */
      2 function f() {
      3    var x;
      4    x.a;
      5    x = {};
      6 }
      7 
      8 try {
      9    f();
     10    assertEq(0, 1);
     11 } catch(e) {
     12 
     13 }