Regression test for bug 319384, attempt to catch conversion error

This commit is contained in:
bob%bclary.com 2005-12-19 09:18:19 +00:00
Родитель d66d8e9305
Коммит 2f30270e16
1 изменённых файлов: 7 добавлений и 1 удалений

Просмотреть файл

@ -47,7 +47,13 @@ printStatus('This test only runs in the browser');
if (typeof clearTimeout === 'function')
{
clearTimeout('foo');
try
{
clearTimeout('foo');
}
catch(ex)
{
}
}
reportCompare(expect, actual, summary);