зеркало из https://github.com/mozilla/gecko-dev.git
make the widget state manager more robust. see #74072. sr=alecf
This commit is contained in:
Родитель
04618dbb5b
Коммит
e1cc8fb9df
|
@ -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");
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче