tor-browser

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

splice-throwing-length-getter-668024.js (191B)


      1 try
      2 {
      3  Array.prototype.splice.call({ get length() { throw 'error'; } });
      4  throw new Error("should have thrown, didn't");
      5 }
      6 catch (e)
      7 {
      8  assertEq(e, "error", "wrong error thrown: " + e);
      9 }