Autocomplete = "new-password" ignored by Chrome 63 on Windows

I have the following test page on my asp.net website:

<html>
<body>
    <form autocomplete="off">
        <input type="password" name="password" autocomplete="new-password">
    </form>
</body>
</html>

Despite the fact that autocomplete offfor the form and new-passwordfor the password field, Chrome 63.0.3239.132 Windows still shows a drop-down list with a list of users to select a password.

According to this , this was enough to disable password auto-completion. How to disable password auto-completion?

+6
source share
1 answer

Chrome/Chromium , autocomplete = "off" , autocomplete = "off" /, .

, , , Google, , .

, . , Chrome . (, , , )

.

<!doctype html>
<html>
<body>
  <form autocomplete="do-not-show-ac">
    <input type="password" name="password" autocomplete="do-not-show-ac"/>
  </form>
</body>
</html>

, , , .

+2

All Articles