Automatic update from web-platform-tests Fix crash on large console log -- wpt-commits: e3f0f309963f48c0f7a4433c1cb31d8e013400a0 wpt-pr: 44403
9 lines
240 B
JavaScript
9 lines
240 B
JavaScript
// 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");
|