I have a password field and used autocomplete="off" for disabling the browser save password popup.But it doesn't works. Then I tried using as input type "text" and used CSS to make the entered text as password using "-ms-text-security: disc:;".It does not work in Edge.
<input type="text" style ="-ms-text-security: disc;"/>
I have also used "-webkit-text-security: disc; " instead of "-ms-text-security: disc:;"and worked on chrome but not on Edge.