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