mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-12-02 18:08:58 +00:00
Adding one more case to test.
This commit is contained in:
parent
2a72e329c5
commit
922f8539d0
@ -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();
|
||||
//-----------------------------------------------------------------------------
|
||||
|
Loading…
Reference in New Issue
Block a user