tor-browser

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

bug1122534.js (393B)


      1 // |jit-test| error: TypeError
      2 
      3 function newFunc(x) { new Function(x)(); };
      4 newFunc("\
      5 function GetUnicodeValues(c) {\
      6    u = new Array();\
      7    if ((c >= 0x0100 && c < 0x0138) || (c > 0x1Bedb  && c < 0x0178))\
      8        return;\
      9    return u;\
     10 }\
     11 function Unicode(c) {\
     12    u = GetUnicodeValues(c);\
     13    this.upper = u[0];\
     14 }\
     15 for (var i = 0; i <= 0x017f; i++) { var U = new Unicode(i); }\
     16 ");