Bug 659012 - 'Select Input Method' context menu when long tapping on a input type=submit button [r=wesj]

This commit is contained in:
Vivien Nicolas 2011-05-25 13:49:12 +02:00
parent 5dd4d3e29b
commit 089fe5f720

View File

@ -992,7 +992,7 @@ ContextHandler.registerType("link-shareable", function(aState, aElement) {
});
ContextHandler.registerType("input-text", function(aState, aElement) {
return aElement instanceof Ci.nsIDOMHTMLInputElement;
return (aElement instanceof Ci.nsIDOMHTMLInputElement && aElement.mozIsTextField(false)) || aElement instanceof Ci.nsIDOMHTMLTextAreaElement;
});
["image", "video"].forEach(function(aType) {