Hacker News new | ask | show | jobs
by eternalny1 1934 days ago
> Am I missing something? Is there some sort of heuristic to when it actually disables that I just got on the good side of by pure luck?

Yep, you are.

Chrome will fill in fields by not just looking at the autocomplete attribute, but also by trying to magically infer it based off the name attribute (and other heuristics).

For example, if you have a text entry box for a filename, and happen to set "name='name'" on it, even with autocomplete off you will get a pick list of people's names.

https://developers.google.com/web/fundamentals/design-and-ux...

1 comments

Interesting, the label for this field is Name, but lucky for me I guess that I gave it a silly name based of the database field it maps to.