blob: 86e15ebf4eef4256322918f7abbd23ef1b95bbed [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;
var successfullyParsed = true;
function test()
{
if (ch == 0)
ch = document.getElementsByTagName('html');
test();
}
debug('If the test did not crash, it has passed.');
debug('');
test();