Sign in
webkit
/
WebKit
/
36b74c3900290f2598b1d40cf6065a7028fc4a34
/
.
/
JSTests
/
stress
/
json-stringified-overflow.js
blob: 48523bc7df7574b30111de61fd67a1a081700538 [
file
] [
log
] [
blame
]
//@ skip if $memoryLimited
try
{
const
s
=
"123"
.
padStart
(
1073741823
);
JSON
.
stringify
(
s
);
}
catch
(
e
)
{
if
(
e
!=
"Error: Out of memory"
)
throw
e
;
}