tor-browser

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

testThrowWhileWrappingException.js (131B)


      1 var caught = false;
      2 try {
      3    evalcx("eval(\"throw<x/>\")", Function.a)
      4 } catch (e) {
      5    caught = true;
      6 }
      7 assertEq(caught, true);