Extract hint tags from <textarea>

This is similar to <input> and also often uses a placeholder or name to
identify itself.
This commit is contained in:
Niklas Haas 2016-08-10 02:07:33 +02:00
parent c54f1fe1bb
commit e0f069f7ca
No known key found for this signature in database
GPG Key ID: 9A09076581B27402

View File

@ -1053,6 +1053,7 @@ class WordHinter:
"img": ["alt", "title", "src"],
"a": ["title", "href", "text"],
"input": ["name", "placeholder"],
"textarea": ["name", "placeholder"],
"button": ["text"]
})