make the widget state manager more robust. see #74072. sr=alecf

This commit is contained in:
sspitzer%netscape.com 2001-03-30 07:16:59 +00:00
Родитель 04618dbb5b
Коммит e1cc8fb9df
1 изменённых файлов: 6 добавлений и 1 удалений

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

@ -227,7 +227,12 @@ nsWidgetStateManager.prototype =
// set menulist specific properties
if( 'value' in aDataObject )
{
element.selectedItem = element.getElementsByAttribute( "value", aDataObject.value )[0];
try {
element.selectedItem = element.getElementsByAttribute( "value", aDataObject.value )[0];
}
catch (ex) {
dump(aElementID +", ex: " + ex + "\n");
}
}
},