Bug 715303 - Fire focus when clicking select elements. r=mfinkle

This commit is contained in:
Wes Johnston 2012-01-06 11:36:36 -08:00
parent 0e3ad63d23
commit e785c9e153

View File

@ -2587,6 +2587,7 @@ var FormAssistant = {
let target = aTarget;
while (target) {
if (this._isSelectElement(target)) {
target.focus();
let list = this.getListForElement(target);
this.show(list, target);
target = null;