tor-browser

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

bug-1263355-38.js (195B)


      1 // |jit-test| error: SyntaxError
      2 
      3 function crashMe2(n) {
      4    var nasty = [],
      5        fn
      6    while (n--) nasty[n] = "a" + 1234567890
      7    fn = Function(nasty.join(), "void 0")
      8 }
      9 crashMe2(0x10000);