зеркало из https://github.com/mozilla/gecko-dev.git
Followup to bug 443370 autocomplete doesn't ignore input events well enough r=ajschult
This commit is contained in:
Родитель
771d39aec1
Коммит
7ae9a5c02f
|
@ -912,9 +912,6 @@
|
||||||
// stop the queued up lookup on a timer
|
// stop the queued up lookup on a timer
|
||||||
this.clearTimer();
|
this.clearTimer();
|
||||||
|
|
||||||
if (this.ignoreInputEvent)
|
|
||||||
return;
|
|
||||||
|
|
||||||
if (this.disableAutoComplete)
|
if (this.disableAutoComplete)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
|
@ -1437,7 +1434,7 @@
|
||||||
|
|
||||||
<handlers>
|
<handlers>
|
||||||
<handler event="input"
|
<handler event="input"
|
||||||
action="this.processInput();"/>
|
action="if (!this.ignoreInputEvent) this.processInput();"/>
|
||||||
|
|
||||||
<handler event="keydown" phase="capturing"
|
<handler event="keydown" phase="capturing"
|
||||||
action="return this.processKeyDown(event);"/>
|
action="return this.processKeyDown(event);"/>
|
||||||
|
|
Загрузка…
Ссылка в новой задаче