tor-browser

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

testBug555484.js (162B)


      1 var result = "";
      2 o = { valueOf:function(){ throw "cow" } };
      3 try {
      4    String.fromCharCode(o);
      5 } catch (e) {
      6    result = e.toString();
      7 }
      8 assertEq(result, "cow");