tor-browser

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

bug728188.js (182B)


      1 // |jit-test| error:TypeError
      2 
      3 delete String.prototype.indexOf;
      4 
      5 function enterFunc (funcName) {
      6    funcName.indexOf();
      7 }
      8 enterFunc(new Array("foo"));
      9 enterFunc(new String("Foo"));