зеркало из https://github.com/mozilla/gecko-dev.git
Bug 770869 - Ignore input type='image' in the IME API. r=fabrice
This commit is contained in:
Родитель
dea6d59805
Коммит
9516da73ae
|
@ -53,7 +53,8 @@ let FormAssistant = {
|
|||
checkbox: true,
|
||||
radio: true,
|
||||
reset: true,
|
||||
submit: true
|
||||
submit: true,
|
||||
image: true
|
||||
};
|
||||
|
||||
if (evt.target instanceof HTMLSelectElement) {
|
||||
|
@ -156,6 +157,10 @@ let FormAssistant = {
|
|||
},
|
||||
|
||||
tryShowIme: function(element) {
|
||||
if (!element) {
|
||||
return;
|
||||
}
|
||||
|
||||
// FIXME/bug 729623: work around apparent bug in the IME manager
|
||||
// in gecko.
|
||||
let readonly = element.getAttribute("readonly");
|
||||
|
|
Загрузка…
Ссылка в новой задаче