Is there an option to turn this off, for those of us who feel we need it like a hole in the head?
Chrome 56 will mark HTTP pages with password fields as non-secure
21–30 of 419 posts
Re: Chrome 56 will mark HTTP pages with password fields as non-secure
#22Re: Chrome 56 will mark HTTP pages with password fields as non-secure
#23Pm - "why is this page insecure" Developer - "chrome labels password fields as insecure over http" Pm - "what if it wasn't a password field"
For those wondering you can mask a normal text field in css input { -webkit-text-security: disc; }.
Re: Chrome 56 will mark HTTP pages with password fields as non-secure
#24Re: Chrome 56 will mark HTTP pages with password fields as non-secure
#25Pm - "why is this page insecure" Developer - "chrome labels password fields as insecure over http" Pm - "what if it wasn't a password field"
Developer - "..."
Re: Chrome 56 will mark HTTP pages with password fields as non-secure
#26Earlier quoted context omitted.
Don't you need to use type = "password" to get the -for-every-character treatment? I suppose you could implement your own (e.g. type = "text" with an onKeyDown listener that cached each keystroke and inserted a into the field), but that sounds like a terrible solution in so many ways. I would think the laziest possible way to workaround this would be to use a CDN like Cloudflare to proxy all traffic to your site. Loo…
> an onKeyDown listener that cached each keystroke and inserted a into the field... sounds like a terrible solution in so many ways. For anyone who is wondering what these ways are, here are a couple: 1) Backspace is a crufty special case 2) What happens when someone highlights text in the input box and types over it?
Reimplementing CodeMirror (including highlighting, etc) is hard enough that most web developers probably can't do it. But it only takes one person to create a library.
Re: Chrome 56 will mark HTTP pages with password fields as non-secure
#27Advancing HTTPS is one of a few good things Google made in the recent years. Thanks Google.
Thanks let's encrypt. Google should've started way way earlier
Re: Chrome 56 will mark HTTP pages with password fields as non-secure
#28What should be done for routers and printers that are accessed by their IP address?
Re: Chrome 56 will mark HTTP pages with password fields as non-secure
#29Mods, can we please get the "?m=1" part of the url removed? I think the current link is for mobile.
Re: Chrome 56 will mark HTTP pages with password fields as non-secure
#30Earlier quoted context omitted.
Don't you need to use type = "password" to get the -for-every-character treatment? I suppose you could implement your own (e.g. type = "text" with an onKeyDown listener that cached each keystroke and inserted a into the field), but that sounds like a terrible solution in so many ways. I would think the laziest possible way to workaround this would be to use a CDN like Cloudflare to proxy all traffic to your site. Loo…
> onKeyDown Right-click paste from my password manager, and it doesn't work. Thanks. --- This idea is terrible in general, but if you do, against all that is holy, implement it, please, please use onInput.