Not a beautiful solution, but worked on Chrome 56:
<INPUT TYPE="text" NAME="name" ID="name" VALUE=" ">
<INPUT TYPE="password" NAME="pass" ID="pass">
Note a space on the value. And then:
$(document).ready(function(){
setTimeout("$('#name').val('')",1000);
});