Issue metadata
Sign in to add a comment
|
Cannot focus input text field after clicking through "Privacy error" https interstitial |
||||||||||||||||||||||||
Issue description
Chrome Version : 60.0.3112.90
OS Version: : goobuntu
URLs (if applicable) :
Other browsers tested:
Add OK or FAIL after other browsers where you have tested this issue:
Safari 5:
Firefox 4.x:
IE 7/8/9:
> What steps will reproduce the problem?
1. Create a self-signed cert:
$ openssl req -new -x509 -keyout a.pem -out a.pem -days 365 -nodes
2. Put the script below into a .py file and run it:
#!/usr/bin/env python
import BaseHTTPServer, SimpleHTTPServer
import ssl
class Handler(BaseHTTPServer.BaseHTTPRequestHandler):
def do_GET(self):
self.send_response(200)
self.end_headers()
self.wfile.write("<body><input type=text></body>")
httpd = BaseHTTPServer.HTTPServer(('localhost', 4433), Handler)
httpd.socket = ssl.wrap_socket(httpd.socket, server_side=True, certfile='a.pem')
httpd.serve_forever()
3. Navigate to https://localhost:4433/ click "Advanced" and "Proceed to localhost" on the interstitial page.
> What is the expected result?
The text box receives focus when clicked on.
> What happens instead of that?
It's not possible to focus the text box without e.g. switching to a different tab and back.
> Please provide any additional information below. Attach a screenshot if possible.
This used to work a while back, but I'm not sure how long ago; sorry.
UserAgentString: Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.90 Safari/537.36
,
Aug 8 2017
,
Aug 8 2017
@Requesting triage help and adding relavant label , as the issue seems to be out of TE scope. Thanks!
,
Aug 9 2017
I can reproduce this reliably with my current Chrome install, but when I try to bisect with archived official builds, it doesn't reproduce -- even if I point them to the profile dir of my main Chrome install. There's something fishy going on here. Is there anyone who's been able to reproduce this with a clean profile?
,
Aug 15 2017
|
|||||||||||||||||||||||||
►
Sign in to add a comment |
|||||||||||||||||||||||||
Comment 1 by yosin@chromium.org
, Aug 8 2017