tor-browser

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

bug1685925-2.js (193B)


      1 // |jit-test| error: TypeError: get length method
      2 setJitCompilerOption("ic.force-megamorphic", 1);
      3 function f(o) {
      4  return o.length;
      5 }
      6 f(new Int8Array(4));
      7 f(Object.create(new Uint8Array()));