summaryrefslogtreecommitdiffstats
path: root/mobile/android/chrome/content
diff options
context:
space:
mode:
Diffstat (limited to 'mobile/android/chrome/content')
-rw-r--r--mobile/android/chrome/content/InputWidgetHelper.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/mobile/android/chrome/content/InputWidgetHelper.js b/mobile/android/chrome/content/InputWidgetHelper.js
index 9c753bd7b..cf66a263e 100644
--- a/mobile/android/chrome/content/InputWidgetHelper.js
+++ b/mobile/android/chrome/content/InputWidgetHelper.js
@@ -63,7 +63,7 @@ var InputWidgetHelper = {
},
hasInputWidget: function(aElement) {
- if (!aElement instanceof HTMLInputElement)
+ if (!(aElement instanceof HTMLInputElement))
return false;
let type = aElement.getAttribute('type');