Bug 770869 - Ignore input type='image' in the IME API. r=fabrice

This commit is contained in:
Vivien Nicolas 2012-07-13 04:28:19 +02:00
Родитель dea6d59805
Коммит 9516da73ae
1 изменённых файлов: 6 добавлений и 1 удалений

Просмотреть файл

@ -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");