Sign in
webkit
/
WebKit
/
6fd57f0545e2ab789319dc828ca2e5959d39c256
/
.
/
JSTests
/
stress
/
test-exception-assert-in-ExceptionHelpers-createError.js
blob: f194854f1d621a92c0ee2c447bb664ed7c7d24f9 [
file
] [
log
] [
blame
]
//@ skip if $memoryLimited
//@ runDefault
try
{
''
.
padStart
(
2
**
31
-
1
)();
}
catch
(
e
)
{
exception
=
e
;
}
if
(
exception
!=
"Error: Out of memory"
)
throw
"FAILED"
;