Sign in
webkit
/
WebKit
/
34f5efbbe2903324708c7d6f83220e30b3f6ddd8
/
.
/
JSTests
/
stress
/
regress-170661.js
blob: 0ee4709104377e27ce35d5b83ee7822fffab0a91 [
file
] [
log
] [
blame
]
function
f
()
{
(
function
bar
()
{
eval
(
'1'
);
f
();
}());
throw
1
;
}
var
exception
;
try
{
f
();
}
catch
(
e
)
{
exception
=
e
;
}
if
(
exception
!=
"RangeError: Maximum call stack size exceeded."
)
throw
(
"FAILED"
);