New issue
Advanced search Search tips

Issue 753114 link

Starred by 2 users

Issue metadata

Status: Duplicate
Merged: issue 739676
Owner: ----
Closed: Aug 2017
Components:
EstimatedDays: ----
NextAction: ----
OS: Linux
Pri: 3
Type: Bug
Team-Security-UX



Sign in to add a comment

Cannot focus input text field after clicking through "Privacy error" https interstitial

Project Member Reported by h...@chromium.org, Aug 7 2017

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
 

Comment 1 by yosin@chromium.org, Aug 8 2017

Components: UI>Browser>Interstitials
Classify to "UI>Browser>Interstitials", but not sure what's going on here.
Labels: Needs-Triage-M60 Needs-Bisect
Labels: -Needs-Bisect TE-NeedsTriageHelp
@Requesting triage help and adding relavant label , as the issue seems to be out of TE scope.

Thanks!

Comment 4 by h...@chromium.org, 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?
Mergedinto: 739676
Status: Duplicate (was: Unconfirmed)

Sign in to add a comment