diff options
author | janekptacijarabaci <janekptacijarabaci@seznam.cz> | 2018-05-02 06:57:57 +0200 |
---|---|---|
committer | janekptacijarabaci <janekptacijarabaci@seznam.cz> | 2018-05-02 06:57:57 +0200 |
commit | c22297a858f6ca292479832ca9b07c737f69e959 (patch) | |
tree | 5ed661a5998ac91f309bb27cb5ae52dfb4178cca /mobile | |
parent | d8d8616c3288241776ef3a203aaa46362149c2d6 (diff) | |
download | uxp-c22297a858f6ca292479832ca9b07c737f69e959.tar.gz |
Fix unsafe "instanceof" negations
https://github.com/MoonchildProductions/Pale-Moon/pull/1173
Diffstat (limited to 'mobile')
-rw-r--r-- | mobile/android/chrome/content/InputWidgetHelper.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mobile/android/chrome/content/InputWidgetHelper.js b/mobile/android/chrome/content/InputWidgetHelper.js index 9c753bd7bb..cf66a263e9 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'); |