tor-browser

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

console-log-large-array.any.js (240B)


      1 // META: global=window,dedicatedworker,shadowrealm
      2 "use strict";
      3 // https://console.spec.whatwg.org/
      4 
      5 test(() => {
      6    console.log(new Array(10000000).fill("x"));
      7    console.log(new Uint8Array(10000000));
      8 }, "Logging large arrays works");