Sign in
webkit
/
WebKit
/
c6a7a2f378a60ecad2c606428f6fc0921528b1a6
/
.
/
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"
);