TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Issue 914451: Autofill does not respect autocomplete="off"

820 pointsby bullmanover 5 years ago

57 comments

romaaeternaover 5 years ago
A few years ago, I left a $1000 tip at the restaurant up the street because Chrome filled out the tip field with my zip code (which thankfully merely defaulted to max $1000 instead). The tip field was off-screen, and the ordering software didn&#x27;t have a confirmation screen, just a &quot;we just charged your card $X amount&quot; screen, which made my eyes boggle.<p>EDIT: Looking at the original March 17th, 2015 bug, it would have been at exactly around that time...In fact, checking my emails, this happened on March 18th, 2015. I had ordered from them several times before this with no problems (they used &quot;chownow.com&quot; for their ordering backend).
评论 #21241120 未加载
评论 #21238839 未加载
评论 #21242163 未加载
评论 #21241460 未加载
评论 #21238873 未加载
评论 #21241456 未加载
carstenhagover 5 years ago
As I had already commented on the issue, it completely breaks Germany&#x27;s main train ticket selling website:<p><a href="https:&#x2F;&#x2F;i.imgur.com&#x2F;BjYTgSn.png" rel="nofollow">https:&#x2F;&#x2F;i.imgur.com&#x2F;BjYTgSn.png</a><p>They have tagged the field as autocomplete=off but Chrome just doesn&#x27;t care.<p>Also see this linked issue where they collected valid use cases for autocomplete=off. They just seem to ignore 452 use cases (I can&#x27;t comment on the quality of them, I did not read any).<p><a href="https:&#x2F;&#x2F;bugs.chromium.org&#x2F;p&#x2F;chromium&#x2F;issues&#x2F;detail?id=587466" rel="nofollow">https:&#x2F;&#x2F;bugs.chromium.org&#x2F;p&#x2F;chromium&#x2F;issues&#x2F;detail?id=587466</a>
评论 #21239318 未加载
评论 #21239172 未加载
评论 #21240267 未加载
评论 #21239333 未加载
评论 #21266330 未加载
评论 #21243432 未加载
评论 #21247738 未加载
sandstromover 5 years ago
This has turned into a sad chicken-race between Google and developers, with lots of innovative workarounds on Stackoverflow.<p>Their tactic of overruling web developers doesn&#x27;t work, it only make things more complicated for everyone, since many of the workarounds have other negative side-effects.<p><a href="https:&#x2F;&#x2F;stackoverflow.com&#x2F;questions&#x2F;12374442&#x2F;chrome-ignores-autocomplete-off" rel="nofollow">https:&#x2F;&#x2F;stackoverflow.com&#x2F;questions&#x2F;12374442&#x2F;chrome-ignores-...</a><p><pre><code> ## Example 1 For a reliable workaround, you can add this code to your layout page: &lt;div style=&quot;display: none;&quot;&gt; &lt;input type=&quot;text&quot; id=&quot;PreventChromeAutocomplete&quot; name=&quot;PreventChromeAutocomplete&quot; autocomplete=&quot;address-level4&quot; &#x2F;&gt; &lt;&#x2F;div&gt; Chrome respects autocomplete=off only when there is at least one other input element in the form with any other autocomplete value. ## Example 2 Simply make your input readonly, and on focus, remove it. This is a very simple approach and browsers will not populate readonly inputs. Therefore, this method is accepted and will never be overwritten by future browser updates. &lt;input type=&quot;text&quot; onfocus=&quot;this.removeAttribute(&#x27;readonly&#x27;);&quot; readonly &#x2F;&gt; Style your input accordingly so that it does not look like a readonly input. ## Example 3 Tell Chrome that this is a new password input and it won&#x27;t provide old ones as autocomplete suggestions: &lt;input type=&quot;password&quot; name=&quot;password&quot; autocomplete=&quot;new-password&quot;&gt;</code></pre>
评论 #21239345 未加载
评论 #21240211 未加载
评论 #21239622 未加载
评论 #21240270 未加载
评论 #21242228 未加载
jchwover 5 years ago
Because other people here are throwing in their frustrations, I will at least add that on the flip side I have been frustrated by sites that attempt to disable autofill for illegitimate reasons, like attempting to disallow password managers. I think I understand where this is coming from.<p>On the other hand, I, too, have been bit by this at least once, in the past. I think it was easier to just disable it at that time, but IIRC, the solution we landed on was to not use form controls at all but switch said text controls over to use content-editable elements. In our case it made sense, since it was not a form at all. My memory could be a bit hazy here, though.<p>(I do not work on Chrome or use Chrome at home, but as disclosure I do currently work at Google.)
评论 #21239645 未加载
评论 #21239031 未加载
评论 #21238959 未加载
评论 #21240288 未加载
ss3000over 5 years ago
Setting aside the merits&#x2F;lack-thereof of this particular decision, Chromium ignoring established web standards like this is especially dangerous as we&#x27;re trending towards a world where 1) Chromium itself powers the most popular browser in the world by an increasingly unhealthy margin, and 2) even competing browsers are increasingly becoming skins on top of Chromium.<p>We are becoming more and more reliant on the developers of Chromium to be steadfast stewards of the standardization process. Their massive influence means that any deviation from actual web standards on their part will inevitably create a new and conflicting de-facto standard that will create decades of lasting damage and irreversible tech debt for the entire web (eventually leading to a repeat of the IE6 dark ages).<p>Decisions like this demonstrate an utter disregard for the crucial role Chromium plays in the web standardization process, and jeopardizes the entire ecosystem.
评论 #21239326 未加载
评论 #21239722 未加载
评论 #21239282 未加载
评论 #21239358 未加载
azernikover 5 years ago
I ran into this last week (with LastPass, not Chrome - this seems to be a common practice):<p>I have a form where users enter information about their suppliers (I make restaurant management software). This includes a field for the contact email address, which LastPass was autofilling the email address the user used to log in. This happened silently, quickly enough that users wouldn&#x27;t notice it on page transition, and would <i>overwrite the initial value</i>. Even with autocomplete=off.<p>This was a DATA LOSS bug - users would load the page, make a few changes, save, and not notice that they&#x27;d lost the email address they&#x27;d stored for the supplier. Fortunately LP has a method to force disabling of autofill (data-lpignore=on), but this could have all been avoided if they&#x27;d <i>followed the spec I was relying on</i>. I still don&#x27;t know if some other password manager, maybe built in to Firefox or something, will make the same mistake, haven&#x27;t had time to check yet.
评论 #21239626 未加载
评论 #21240371 未加载
Geeflowover 5 years ago
As a user, Chrome&#x27;s autocomplete went down the drain for me once they started to fill all fields at once. I tried to autocomplete one field and often chrome filled the other fields with unfitting data. This happened so often that I started to manually complete fields even if autocomplete was available. I still miss the good old times[tm] of single-field autocomplete...<p>(And for the record: As a developer, I have been bitten by Chrome ignoring autocomplete=&quot;off&quot; as well.)
评论 #21239838 未加载
评论 #21240855 未加载
TekMolover 5 years ago
I guess this will lead to a horrible coding style where instead of having this in the form:<p><pre><code> &lt;input name=&quot;email&quot;&gt; </code></pre> We will see stuff like this:<p><pre><code> &lt;input name=&quot;16fkr9547kancot944128sddfksdf934998aafccugt75&quot;&gt; </code></pre> Where developers use some type of abstraction that generates a random id for each field and then assigns it to the original value server side or in javascript.<p>Just like they already randomise asset filenames to avoid caching.
评论 #21238989 未加载
评论 #21239590 未加载
评论 #21239152 未加载
评论 #21239114 未加载
评论 #21239080 未加载
评论 #21239220 未加载
评论 #21253502 未加载
VMGover 5 years ago
Autofill for offscreen elements gives me the creeps even without the data getting misinterpreted
评论 #21239340 未加载
评论 #21239969 未加载
评论 #21239659 未加载
评论 #21239403 未加载
评论 #21239638 未加载
sky_rwover 5 years ago
Curious as to the global business impact this has had. I personally have spent at least a dozen hours debugging forms and trying to disable autocomplete&#x2F;autofill on my kiosk-based applications. How many development hours collectively have been wasted on this unilateral decision.<p>I have not been this frustrated since the days of writing css for ie6, and at least back then the devs response was more &quot;sorry its our rendering engine&quot; and not battre just saying GFY seemingly out of disdain.<p>I try to be as free-market as possible but I sure wish that the w3c had some teeth when it came to things like this.
评论 #21241239 未加载
albertzeyerover 5 years ago
Btw, at <a href="http:&#x2F;&#x2F;google.com" rel="nofollow">http:&#x2F;&#x2F;google.com</a>, this is what they have for the search field:<p>&lt;input class=&quot;...&quot; maxlength=&quot;2048&quot; name=&quot;q&quot; type=&quot;text&quot; jsaction=&quot;...&quot; aria-autocomplete=&quot;both&quot; aria-haspopup=&quot;false&quot; autocapitalize=&quot;off&quot; autocomplete=&quot;off&quot; autocorrect=&quot;off&quot; role=&quot;combobox&quot; spellcheck=&quot;false&quot; title=&quot;Search&quot; value=&quot;&quot; aria-label=&quot;Search&quot; data-ved=&quot;...&quot;&gt;
评论 #21241278 未加载
goatinaboatover 5 years ago
<i>Overall, I still believe that neither of the extreme strategies (&quot;always honor autocomplete=off&quot;</i><p>Is it “extreme” now for a computer to do what the user wants and not what a random Google employee wants? How does this differ from malware?
评论 #21239147 未加载
评论 #21239085 未加载
lstamourover 5 years ago
The way I see it, autofill off should mean off and if I click the icon in the address bar to bring up, well, let’s call it “quick access to per-site settings” then maybe I could override it for a specific page load or site, like you can Flash, etc.? This per-site configuration is starting to become “normal” given iOS 13 does the same in Safari for permissions, content blocking, automatic reader mode, etc. It would make sense that the default is “follow the HTML5 spec” but you could put a notice in the address bar if you really felt otherwise...?<p>Safari does a much better job by only filling visible form fields, I think (though it too has a tendency to put my address both in Line 1 and Line 3, which is annoying...).
the_pwner224over 5 years ago
Explanation from the &#x27;rogue Chromium dev&#x27; is linked to in comment 19 of this bug: <a href="https:&#x2F;&#x2F;bugs.chromium.org&#x2F;p&#x2F;chromium&#x2F;issues&#x2F;detail?id=914451#c19" rel="nofollow">https:&#x2F;&#x2F;bugs.chromium.org&#x2F;p&#x2F;chromium&#x2F;issues&#x2F;detail?id=914451...</a><p><a href="https:&#x2F;&#x2F;bugs.chromium.org&#x2F;p&#x2F;chromium&#x2F;issues&#x2F;detail?id=468153#c164" rel="nofollow">https:&#x2F;&#x2F;bugs.chromium.org&#x2F;p&#x2F;chromium&#x2F;issues&#x2F;detail?id=468153...</a>
评论 #21238781 未加载
评论 #21239108 未加载
GrayShadeover 5 years ago
Firefox used to ignore autocomplete=&quot;off&quot; until relatively recently. I&#x27;m sick of sites thinking they know better than me -- like those who don&#x27;t let me paste in the password field. While I understand the good use cases for this attribute, given the binary choice I would rather have it ignored.
评论 #21239436 未加载
评论 #21239094 未加载
andrewstuartover 5 years ago
The weird thing is that there&#x27;s other teams within Google who offer autocomplete libraries that simply don&#x27;t work because Chrome overlays it&#x27;s own autocomplete on top.<p>The maps team seems to have given up on trying to resolve that.<p>Chrome team have made a judgement that autocomplete is required and no-one - not even other teams within Google are allowed to override that functionality.<p>It&#x27;s weird.
评论 #21241837 未加载
评论 #21239798 未加载
xg15over 5 years ago
Relevant reply from a Googler seems to be this: <a href="https:&#x2F;&#x2F;bugs.chromium.org&#x2F;p&#x2F;chromium&#x2F;issues&#x2F;detail?id=914451#c66" rel="nofollow">https:&#x2F;&#x2F;bugs.chromium.org&#x2F;p&#x2F;chromium&#x2F;issues&#x2F;detail?id=914451...</a><p>by battre@google.com<p>... which doesn&#x27;t read at all to me like a &quot;rogue dev&quot; and more like a shared sentiment inside the Chrome team that autocomplete=off should be ignored.<p>At least, if there is a direct spec violation that breaks all kinds of applications and the answer your hear is &quot;oh well, we&#x27;re working on giving the user more options and improving our algorithm&quot;, that&#x27;s not exactly encouraging.
评论 #21241022 未加载
tannhaeuserover 5 years ago
It&#x27;s odd that the linked bug report references and complains about W3C specs when browser&#x2F;HTML specs have been coming from WHATWG for well over ten years now. W3C has ceased publishing HTML with W3C HTML 5.2 in 2017, and has announced an intent to merely publish WHATWG snapshots going forward; so far, I&#x27;m not aware of any actual work under this model by W3C.<p>But OTOH that Chromium interprets form field names heuristically to enable auto-autocomplete is worrying, and reflects poorly on the whole &quot;standardization&quot; process by WHATWG.
评论 #21239135 未加载
duxupover 5 years ago
It&#x27;s really frustrating to have to work around this with hit or miss hidden inputs and such.<p>So many cases too where auto complete misfires an obliterated forms that had helpful placeholder text.<p>Just having a user change passwords and auto complete will often put an old saved password in the first field but not the second confirmation password field.
评论 #21239551 未加载
Hokusaiover 5 years ago
I do not get from where it comes that it is a rogue developer. I have worked in many companies where developers make mistakes. And, it is always the ways of working, giving more priority to features than quality, and similar cultural attributes of the company at fault.<p>The only time I saw this being a rogue developer was a commit and run done by a guy on his last day.<p>It is easy to blame one person when actually is a systemic failure that needs to be addressed at the company level.
评论 #21239134 未加载
speedplaneover 5 years ago
I run a site with a normal login&#x2F;password, but which maintains passwords for other systems. It&#x27;s pretty frustrating when the internal external usernames are autofilled with the username from our site. It confuses the user, suggesting that the username from the external site should be the same as our own.
PerfectElementover 5 years ago
I was using Google Places&#x27; address auto-complete on a CRM, and most users loved it. Chrome&#x27;s behavior completely broke this functionality by overlaying their auto-fill on top of Google Places suggestions, with no sane way to disable it. We decided to stop using address auto-complete and force our customers to type the address fields instead.<p>Ironically, we were paying Google a few thousand dollars per month for this, so they are not getting our revenue as a direct consequence of Chrome&#x27;s behavior.
dazbradburyover 5 years ago
I&#x27;m not sure who Chrome think they&#x27;re helping. We get many, many users contacting our support team because of this feature &#x2F; bug on <a href="https:&#x2F;&#x2F;www.openrent.co.uk" rel="nofollow">https:&#x2F;&#x2F;www.openrent.co.uk</a>.<p>It&#x27;s frustrating, we&#x27;ve used workarounds, which then stop working and reports come flooding in again. It&#x27;s crazy to me that the Chrome team think this is better for users, and that there isn&#x27;t a more intelligent workaround for sites abusing autocomplete=off.
评论 #21239796 未加载
andrewstuartover 5 years ago
The Chrome dev team have implemented autocomplete the way they think it should work, not the way web developers want.<p>You cannot switch off Chrome&#x27;s handling of autocomplete, thus any other autocomplete implementation will be overwritten by Chrome&#x27;s handling.<p>Chrome team feel they know best.
评论 #21239049 未加载
评论 #21239039 未加载
avodonosovover 5 years ago
Bad that chrome developers don&#x27;t practice web development enough to know the use cases where ignoring autocomplete=off breaks the application.
mgoetzkeover 5 years ago
Or line of business applications which (when rendered with Chrome) wants me to pick from my credit cards when I enter a certain field which has nothing to do with credit cards. I think it depends on the field name, but there seems to be a very loose correlation.
needle0over 5 years ago
Another reason to abandon ship and switch to Firefox.
avellableover 5 years ago
With the new direction chrome is going I wouldn&#x27;t mind putting &quot;works best on anything but Chrome&quot; on my next web project.
评论 #21239891 未加载
dangover 5 years ago
The submitted title was heavily editorialized:<p>&quot;Rogue Chromium dev lead ignores W3C &#x27;autocomplete&#x27; spec; frustrates Internet&quot;
lowercasedover 5 years ago
&gt; This causes some problems, e.g. in &lt;input type=&quot;text&quot; name=&quot;name&quot;&gt;, the &quot;name&quot; can refer to different concepts (a person&#x27;s name or the name of a spare part).<p>Maybe I need context, but I don&#x27;t understand why they&#x27;re trying to &#x27;guess&#x27; context around &#x27;name&#x27; and trying to autofill something - either a spare part or a person&#x27;s name.<p>Doesn&#x27;t &quot;name=&#x27;name&#x27;&quot; indicate that it should refill with the previously filled value of field named &#x27;named&#x27; on that same page&#x2F;document&#x2F;url? Why are they trying to add algorithmic complexity on to already existing stuff?<p>&lt;input --chrome-type=&quot;name&quot;&#x2F;&gt;<p>This might make more sense, no? Let chrome try to determine a &#x27;name&#x27; based on whatever logic they want.
velox_ioover 5 years ago
There&#x27;s a major security flaw with auto-fill when it comes to passwords. Sure, it&#x27;s hidden on screen, but you only have to change the password box&#x27;s type, so it isn&#x27;t &quot;type=&#x27;password&#x27;&quot; and it is revealed. This only takes a matter of seconds.<p>Chrome should remove the password if there is any attempt to change that form object.<p>This flaw has been there for years, it&#x27;s actually handy if I&#x27;m not sure what the password is.
评论 #21240994 未加载
评论 #21240146 未加载
user5994461over 5 years ago
&gt;&gt;&gt; - How to trigger the hiding? - right mouse button menu or (more likely) something in the drop down? where would we put that? ...<p>Mobiles notoriously don&#x27;t have mouse buttons, so any UI relying on right-click will not be usable there.<p>It&#x27;s odd that Google is considering mouse-based workarounds in all considered solutions, as if unaware of that. or maybe Chromium is only the desktop browser?
packetizedover 5 years ago
This position seems at odds with a recently opened WHATWG issue.<p><a href="https:&#x2F;&#x2F;github.com&#x2F;whatwg&#x2F;html&#x2F;issues&#x2F;4986" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;whatwg&#x2F;html&#x2F;issues&#x2F;4986</a>
codegladiatorover 5 years ago
&gt; if you add an &lt;input type=&quot;hidden&quot; autocomplete=&quot;username&quot; name=&quot;does_not_matter&quot; value=&quot;{the actual username}&quot;&gt; before your current-password and new-password fields, Chrome should get it right<p>I can&#x27;t believe that this suggested hack is coming from google.<p><a href="https:&#x2F;&#x2F;bugs.chromium.org&#x2F;p&#x2F;chromium&#x2F;issues&#x2F;detail?id=914451#c63" rel="nofollow">https:&#x2F;&#x2F;bugs.chromium.org&#x2F;p&#x2F;chromium&#x2F;issues&#x2F;detail?id=914451...</a>
platzover 5 years ago
&gt; Comment 66 by battre@google.com on Tue, Oct 8, 2019, 3:48 AM CDT (5 days ago) - Overall, I still believe that neither of the extreme strategies (&quot;always honor autocomplete=off&quot; and &quot;never honor autocomplete=off&quot;) are good<p><a href="https:&#x2F;&#x2F;bugs.chromium.org&#x2F;p&#x2F;chromium&#x2F;issues&#x2F;detail?id=914451#c66" rel="nofollow">https:&#x2F;&#x2F;bugs.chromium.org&#x2F;p&#x2F;chromium&#x2F;issues&#x2F;detail?id=914451...</a><p>We&#x27;re in for the Long haul on this one.
tyingqover 5 years ago
Discussion about a demo of the issue...<p><a href="https:&#x2F;&#x2F;news.ycombinator.com&#x2F;item?id=13329525" rel="nofollow">https:&#x2F;&#x2F;news.ycombinator.com&#x2F;item?id=13329525</a>
marcoseliziarioover 5 years ago
If you look at the chrome sources you can find this flag:<p>const char kAutofillOffNoServerDataDescription[] = &quot;Disables Autofill for fields with autocomplete off that have no &quot; &quot;crowd-sourced evidence that Autofill would be helpful.&quot;;<p>So, at least in a company, this should work to avoid autocomplete making corporate apps unusable.<p>another thing that seems to work for me, is adding role=&quot;combobox&quot; along with autocomplete=&quot;off&quot;
tehabeover 5 years ago
I guess this bug is the real reason why I turned off auto-fill in the browser a while ago, because it acted weird a lot of times.
asdf-asdf-asdfover 5 years ago
title is wrong, the spec is not ignored. spec says: &quot; When an element’s autofill field name is &quot;off&quot;, the user agent should not remember the control’s data, and should not offer past values to the user. &quot;<p>please note that it uses &quot;should&quot;, not &quot;must&quot;. these words have precise definition in specs, see RFC2119:<p>&quot; SHOULD This word, or the adjective &quot;RECOMMENDED&quot;, mean that there may exist valid reasons in particular circumstances to ignore a particular item, but the full implications must be understood and carefully weighed before choosing a different course. &quot;<p>one may argue whether chrome has valid reasons or not, but saying they ignore it is incorrect.
评论 #21239391 未加载
chris_wotover 5 years ago
Previously closed as WONTFIX: <a href="https:&#x2F;&#x2F;bugs.chromium.org&#x2F;p&#x2F;chromium&#x2F;issues&#x2F;detail?id=468153" rel="nofollow">https:&#x2F;&#x2F;bugs.chromium.org&#x2F;p&#x2F;chromium&#x2F;issues&#x2F;detail?id=468153</a>
评论 #21239084 未加载
marcoseliziarioover 5 years ago
So far this combinations seems to be working for me<p>role=&quot;combobox&quot; autocomplete=&quot;off&quot;
onion2kover 5 years ago
Does Chromium not have anyone doing QA or acceptance criteria? A rogue dev lead could make whatever feature they want, but there should be a robust process of testing by many people before the feature makes it in to a production build.
aiCeivi9over 5 years ago
I hat to fight with browser autocomplete in Kibana main search bar. On the other hand I guess it is the same as right mouse button - I don&#x27;t allow any site to capture that event since some abuse it.
dannykwellsover 5 years ago
A rare example where an editorialized HN post title is appreciated. Bravo!
sm4rk0over 5 years ago
Just stop using Chrome. There are good (even better) alternatives.
edoceoover 5 years ago
I use autocomplete=&quot;x&quot; and it seems to work for my apps.<p>Both Twilio and NameCheap seem to have login that defeat autocomplete in a nice way. Haven&#x27;t investigate their tricks
mferover 5 years ago
&gt; This has turned into a sad tit-for-tat between developers and Chrome, where no-one is winning.<p>Not the kind of relationship you want to build with an army of advocates
enriqutoover 5 years ago
I love the edited title of this post. It reflects accurately the reality of the situation. Hey, battre, hi there! You are famous now!
robotstateover 5 years ago
I wrote a Medium article on how to actually turn it off 3 years ago that consistently gets about 500 views a week to this day.
phendrenad2over 5 years ago
I wonder what kind of engine overhaul Chrome is doing to cause all of these strange breakages.
smashahover 5 years ago
This also screws with notion to the point where I&#x27;ve largely stopped using it at all
wolcoover 5 years ago
As a developer this can be fixed by using unique field names.
iandanforthover 5 years ago
We&#x27;re Google, we don&#x27;t have to respect the spec.
tus88over 5 years ago
I would love it if someone explained how &#x27;autocomplete=off&#x27; can lead to abuse of some kind. It seems to reduce the potential for security leaks.
评论 #21238699 未加载
评论 #21238694 未加载
评论 #21238837 未加载
评论 #21239038 未加载
imodeover 5 years ago
Is &quot;ignoring the specification&quot; an extreme, now?<p>Are we seriously expected to entertain this mess?<p>So glad I switched to Firefox all those years ago.
评论 #21239896 未加载
评论 #21239919 未加载
bullmanover 5 years ago
There was a time when IE was the dominant browser, and happily did whatever they wanted to.<p>That was arguably better, because at least they acted predictably. Chrome has been continually altering how autocomplete is handled in the last 5 or 6 major releases
评论 #21238644 未加载
评论 #21238750 未加载
platypiiover 5 years ago
Thank you chrome, for recognizing that the USER is what matters, not the website developer. Websites started blocking legitimate uses of autocomplete, and that makes the web less secure. As a user I sincerely hope that &quot;autocomplete=off&quot; dies just like the blink tag, as it is user hostile.