really fix testcase for bug 299209

This commit is contained in:
bob%bclary.com 2005-07-02 11:10:16 +00:00
parent a029bbe769
commit 86604680ee

View File

@ -43,6 +43,12 @@ var expect = 'No Crash';
printBugNumber (bug);
printStatus (summary);
eval('for (a = 0; a <= 10000; a++) { try { function(){("");} } catch(e) {} }');
try
{
eval('for (a = 0; a <= 10000; a++) { function(){("");} }');
}
catch(e)
{
}
reportCompare(expect, actual, summary);