mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-03-07 09:13:12 +00:00
Bug 559792 - XUL menulist widget broken in content pages (followup) [r=vingtetun]
This commit is contained in:
parent
6e34e04edf
commit
02f8430c79
@ -1772,7 +1772,8 @@ function MenulistWrapper(aControl) {
|
||||
MenulistWrapper.prototype = {
|
||||
get selectedIndex() {
|
||||
let control = this._control.wrappedJSObject || this._control;
|
||||
return this._control.selectedIndex;
|
||||
let result = control.selectedIndex;
|
||||
return (typeof result == "number" && !isNaN(result) ? result : -1);
|
||||
},
|
||||
get multiple() { return false; },
|
||||
get options() {
|
||||
|
Loading…
x
Reference in New Issue
Block a user