It\'s a useful feature, to be sure, but is there any way to disable it? For instance, if the form is a single text field and already has a \"clear\" button beside it, it
You should style for ::-ms-clear (http://msdn.microsoft.com/en-us/library/windows/apps/hh465740.aspx):
::-ms-clear
::-ms-clear { display: none; }
And you also style for ::-ms-reveal pseudo-element for password field:
::-ms-reveal
::-ms-reveal { display: none; }