blob: fac4a0091b7d82caed7ddaf0201816277f4ceec6 [file] [log] [blame]
description('Tests hitting the recursion limit with equality comparisons. At one point this crashed due to lack of exception checking inside the engine.');
ch = 0;
function test()
{
if (ch == 0)
ch = document.getElementsByTagName('html');
test();
}
debug('If the test did not crash, it has passed.');
debug('');
shouldThrow("test()");