]> git.eshelyaron.com Git - emacs.git/commitdiff
Make it possible to TAB to input fields
authorLars Ingebrigtsen <larsi@gnus.org>
Thu, 4 Feb 2016 04:42:08 +0000 (15:42 +1100)
committerLars Ingebrigtsen <larsi@gnus.org>
Thu, 4 Feb 2016 04:42:08 +0000 (15:42 +1100)
* lisp/net/eww.el (eww-tag-input): Make it possible to TAB to
input fields (bug#22540).

lisp/net/eww.el

index f8d7c75aa2bbe17d5a83845a125ed7b48cc7c4a0..7cb324e2399ff3775925c947ee6bfa159bfff757 100644 (file)
@@ -1136,7 +1136,9 @@ See URL `https://developer.mozilla.org/en-US/docs/Web/HTML/Element/Input'.")
      (t
       (eww-form-text dom)))
     (unless (= start (point))
-      (put-text-property start (1+ start) 'help-echo "Input field"))))
+      (put-text-property start (1+ start) 'help-echo "Input field")
+      ;; Mark this as an element we can TAB to.
+      (put-text-property start (1+ start) 'shr-url dom))))
 
 (defun eww-tag-select (dom)
   (shr-ensure-paragraph)