Chrome autocompletes some name and password like fields even though they have the autocomplete=off attribute.
Autocomplete still shows up and is really annoying. What I noticed is that our editors don’t have a name attribute. Browsers use heuristics to guess which inputs shall be autocompleted by the field name (e.g. “City”, “Name”, etc.). Maybe us missing the name attribute makes the browser try autocompleting everywhere?
Could we try this combo maybe?
name="control1"
autocomplete="off"
autocorrect="off"
autocapitalize="off"
spellcheck="false"
Also for comboboxes the right type should actually be search, if I am not mistaken?
type="search"
Currently it has no type.