This commit is contained in:
pschwartau%netscape.com 2001-11-13 19:46:27 +00:00
Родитель 5512f1433c
Коммит 0a61967ca6
1 изменённых файлов: 31 добавлений и 0 удалений

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

@ -91,6 +91,37 @@ captureThis();
function myTest(x)
{
var obj = new Object();
var msg;
with (obj)
{
msg = (x != null) ? "NO" : "YES";
print("Is the provided argument to myTest() null? : " + msg);
try
{
throw "ZZZ";
}
catch (e)
{
print("Caught thrown exception = " + e);
}
}
return 1;
}
status = inSection(3);
actual = myTest(null);
expect = 1;
captureThis();
//-----------------------------------------------------------------------------
test();
//-----------------------------------------------------------------------------