Adding one more case to test.

This commit is contained in:
pschwartau%netscape.com 2001-12-04 00:54:00 +00:00
parent 2a72e329c5
commit 922f8539d0

View File

@ -268,6 +268,38 @@ captureThis();
function entry_menu()
{
var document = new Object();
var dialog = new Object();
var num = 100;
with (document)
{
with (dialog)
{
try
{
while (true)
{
return num;
}
}
finally
{
}
}
}
}
status = inSection(8);
actual = entry_menu();
expect = 100;
captureThis();
//-----------------------------------------------------------------------------
test();
//-----------------------------------------------------------------------------