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
Родитель ad03fd2d7d
Коммит c6d79334bd
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);