I don't like to use setTimeout in or even have strange temporary inputs.
So I came up with this.
Simply change your password field type to text
And when the user focus that input change it again to password
$('input[name=password]').on('focus', function (e) {
$(e.target).attr('type', 'password');
});
Its working using latest Chrome (Version 54.0.2840.71 (64-bit))