diff --git a/qutebrowser/browser/hints.py b/qutebrowser/browser/hints.py index 146a9af35..278ad7d0d 100644 --- a/qutebrowser/browser/hints.py +++ b/qutebrowser/browser/hints.py @@ -1027,9 +1027,9 @@ class WordHinter: } extractable_attrs = collections.defaultdict(list, { - "IMG": ["alt", "title", "src"], - "A": ["title", "href", "text"], - "INPUT": ["name"] + "img": ["alt", "title", "src"], + "a": ["title", "href", "text"], + "input": ["name"] }) return (attr_extractors[attr](elem)