aboutsummaryrefslogtreecommitdiffstats
path: root/walk-input.js
diff options
context:
space:
mode:
Diffstat (limited to 'walk-input.js')
-rw-r--r--walk-input.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/walk-input.js b/walk-input.js
index ef3db1c..6c10a31 100644
--- a/walk-input.js
+++ b/walk-input.js
@@ -80,7 +80,7 @@ var types = [
"url",
"tel",
"color",
-].map(function(type) "@type=" + type.quote()).join(" or ");
+].map(function(type) "@type=" + JSON.stringify(type)).join(" or ");
var xpath = '//input[(' + types + ' or not(@type)) and not(@disabled)] | //textarea | //*[@contenteditable="true"]';
function isVisible (elem) {