Closed
Bug 1343210
Opened 8 years ago
Closed 8 years ago
Only move focus into identity popup when opened via keyboard
Categories
(Firefox :: Site Identity, defect, P1)
Firefox
Site Identity
Tracking
()
RESOLVED
FIXED
Firefox 55
People
(Reporter: johannh, Assigned: johannh)
References
Details
(Keywords: access, regression, Whiteboard: [fxprivacy])
Attachments
(1 file)
59 bytes,
text/x-review-board-request
|
Gijs
:
review+
lizzard
:
approval-mozilla-aurora+
lizzard
:
approval-mozilla-beta+
jcristau
:
approval-mozilla-esr52+
|
Details |
In bug 1335018 we improved the a11y of the identity popup by moving focus into it. Turns out that on many platforms this causes the focus ring to show up when selecting the identity popup, which it should only on keyboard navigation.
Comment hidden (mozreview-request) |
Assignee | ||
Comment 2•8 years ago
|
||
https://treeherder.mozilla.org/#/jobs?repo=try&revision=7c6799ecb0c8
Comment 3•8 years ago
|
||
mozreview-review |
Comment on attachment 8841959 [details] Bug 1343210 - Only move focus into identity popup when opened via keyboard. https://reviewboard.mozilla.org/r/116016/#review117404 ::: browser/base/content/browser.js:7364 (Diff revision 1) > + if (event.type == "keypress") { > + // Move focus to the next available element in the identity popup. > + // This is required by role=alertdialog and fixes an issue where > + // an already open panel would steal focus from the identity popup. > + this._identityPopup.addEventListener("popupshown", > + () => document.commandDispatcher.advanceFocusIntoSubtree(this._identityPopup), > + {once: true} > + ); > + } This introduces a subtle bug where, if a popupshowing handler stops the popup being shown, the listener will persist and then we'll have 2 listeners the next time the popup is shown. It seems simpler (and would fix this bug) to simply store a property on every invocation here: ```js this._wasTriggeredByKeyboard = event.type == "keypress"; ``` and then check that property in the `onPopupShown` handler.
Attachment #8841959 -
Flags: review?(gijskruitbosch+bugs)
Comment 4•8 years ago
|
||
Is this something that needs tracking for Fx52 still given that we created the first RC build for it yesterday?
Assignee | ||
Comment 5•8 years ago
|
||
Yes, 52 should ideally be fixed. I hope this is still possible. Sorry for the delay, I was traveling yesterday. I'll get a revised patch up and we can hopefully request uplift tomorrow. [Tracking Requested - why for this release]: UI regression that we recently uplifted to beta. Patch should be fairly simple.
tracking-firefox52:
--- → ?
Comment hidden (mozreview-request) |
Assignee | ||
Comment 7•8 years ago
|
||
Now with a test! Talking to shorlander on IRC he said this is not worth an uplift [if the risk is too high or if we're too late in the process]. I tend to agree, though I'm not really happy about it. Gijs, what's your impression of this patch? Should we hold off from asking for a late uplift?
Comment 8•8 years ago
|
||
mozreview-review |
Comment on attachment 8841959 [details] Bug 1343210 - Only move focus into identity popup when opened via keyboard. https://reviewboard.mozilla.org/r/116016/#review117594 ::: browser/base/content/browser.js:7401 (Diff revision 2) > > + // Reset in case the popup is triggered somewhere else. We currently > + // only care about keypress events from the identity block. > + this._popupTriggeredByKeyboard = false; > + > + if (event.target == this._identityPopup) { Why does the focus call no longer live inside this if block? And why do we need to reset the prop to false? ::: browser/base/content/test/siteIdentity/browser_identityPopup_focus.js:14 (Diff revision 2) > + yield shown; > + isnot(Services.focus.focusedElement, document.getElementById("identity-popup-security-expander")); > + }); > +}); > + > +// Access the identity popup via mouseclick. Focus should be moved inside. Broken comment?
Attachment #8841959 -
Flags: review?(gijskruitbosch+bugs)
Comment 9•8 years ago
|
||
(In reply to Johann Hofmann [:johannh] from comment #7) > Now with a test! > > Talking to shorlander on IRC he said this is not worth an uplift [if the > risk is too high or if we're too late in the process]. I tend to agree, > though I'm not really happy about it. Gijs, what's your impression of this > patch? Should we hold off from asking for a late uplift? We're building release candidates at this point, and this is a polish issue, so I don't think we should bother with uplifting to 52, no.
Comment hidden (mozreview-request) |
Comment 12•8 years ago
|
||
mozreview-review |
Comment on attachment 8841959 [details] Bug 1343210 - Only move focus into identity popup when opened via keyboard. https://reviewboard.mozilla.org/r/116016/#review117754 r=me given that it kind of works, but given that we now have some time, can you please check with Marco that this works for him? IIRC a11y tools sometimes simulate clicks when activating items. Not sure though. Really, the correct behaviour here would be to always put focus in the popup but not show the focus rectangle in the mouse case. The fact that the focus rectangle is being shown is presumably a consequence of the implementation of advanceFocusIntoSubtree effectively 'triggering' keyboard focus rings, which it shouldn't do. I expect that the 'right' fix would be to add a parameter to that API that allows passing the focus method. Neil Deakin would know for sure.
Attachment #8841959 -
Flags: review?(gijskruitbosch+bugs) → review+
Assignee | ||
Comment 13•8 years ago
|
||
> Really, the correct behaviour here would be to always put focus in the popup but not show the focus rectangle in the mouse case.
An alternative that Marco mentioned would be to allow focusing the popup (without a focus ring) instead of setting focusedElement to null when a popup appears.
Neil, according to Marco the default keyboard focus story around popups needs some slight improvements. Does one of these suggestions sound viable to you?
Flags: needinfo?(enndeakin)
Assignee | ||
Comment 14•8 years ago
|
||
Marco, this patch makes it so that focus is only moved into the site identity popup if the user accessed it via keyboard (because we presume that is sufficient for a11y). Is that a safe assumption?
Flags: needinfo?(mzehe)
Comment 15•8 years ago
|
||
The right fix is for the accessibility code to just set its own notion of focus and send any internal events it needs correctly for panels, and not require application developers to add workarounds, the same way that menus and tooltips just work.
Flags: needinfo?(enndeakin)
Assignee | ||
Comment 16•8 years ago
|
||
Okay, taking a step back I agree that we're going overboard with workarounds for things that should obviously work on platform/a11y side. Nonetheless, since this bug is strictly an improvement to the current situation I'll go ahead and land it. In the next days I'll try to talk to a11y folks about what's really missing in panel functionality (not exclusively the security UI part) and come up with a solution/a new bug that doesn't require frontend hacks. With that said, I think it's good to have a workaround in place until this is solved since it should be easy for screen readers to get access to the site identity popup right now.
Comment 17•8 years ago
|
||
Pushed by jhofmann@mozilla.com: https://hg.mozilla.org/integration/autoland/rev/c0fed4c802a8 Only move focus into identity popup when opened via keyboard. r=Gijs
Updated•8 years ago
|
Flags: needinfo?(mzehe)
Comment 18•8 years ago
|
||
bugherder |
https://hg.mozilla.org/mozilla-central/rev/c0fed4c802a8
Status: ASSIGNED → RESOLVED
Closed: 8 years ago
status-firefox55:
--- → fixed
Resolution: --- → FIXED
Target Milestone: --- → Firefox 55
Comment 19•8 years ago
|
||
Please request Aurora/Beta approval on this when you're ready to do so.
Assignee | ||
Comment 20•8 years ago
|
||
Comment on attachment 8841959 [details] Bug 1343210 - Only move focus into identity popup when opened via keyboard. Approval Request Comment [Feature/Bug causing the regression]: Bug 1335018 [User impact if declined]: Users will see a focus ring in the site identity panel without navigating with the keyboard, which is distracting [Is this code covered by automated tests?]: Yes [Has the fix been verified in Nightly?]: Yes [Needs manual test from QE? If yes, steps to reproduce]: No [List of other uplifts needed for the feature/fix]: None [Is the change risky?]: No [Why is the change risky/not risky?]: Small, straightforward frontend patch that is covered by tests. [String changes made/needed]: None
Flags: needinfo?(jhofmann)
Attachment #8841959 -
Flags: approval-mozilla-beta?
Attachment #8841959 -
Flags: approval-mozilla-aurora?
Comment 21•8 years ago
|
||
Comment on attachment 8841959 [details] Bug 1343210 - Only move focus into identity popup when opened via keyboard. Minor fix for focus on site identity popups. This should land for beta 2.
Attachment #8841959 -
Flags: approval-mozilla-beta?
Attachment #8841959 -
Flags: approval-mozilla-beta+
Attachment #8841959 -
Flags: approval-mozilla-aurora?
Attachment #8841959 -
Flags: approval-mozilla-aurora+
Comment 22•8 years ago
|
||
bugherder uplift |
https://hg.mozilla.org/releases/mozilla-aurora/rev/3322424b416a
Comment 23•8 years ago
|
||
bugherder uplift |
https://hg.mozilla.org/releases/mozilla-beta/rev/dc8c26683d20
Comment 24•8 years ago
|
||
Setting qe-verify- based on Johann's assessment on manual testing needs (see Comment 20) and the fact that this fix has automated coverage.
Comment 25•8 years ago
|
||
Comment on attachment 8841959 [details] Bug 1343210 - Only move focus into identity popup when opened via keyboard. See comment 20.
Attachment #8841959 -
Flags: approval-mozilla-esr52?
Comment 26•8 years ago
|
||
Comment on attachment 8841959 [details] Bug 1343210 - Only move focus into identity popup when opened via keyboard. focus tweak for site identity popup, esr52+
Attachment #8841959 -
Flags: approval-mozilla-esr52? → approval-mozilla-esr52+
Comment 28•8 years ago
|
||
uplift |
https://hg.mozilla.org/releases/mozilla-esr52/rev/ed9521749d6f
Flags: needinfo?(jhofmann)
Comment 29•8 years ago
|
||
Setting qe-verify- based on Johann's assessment on manual testing needs and the fact that this fix has automated coverage (see Comment 20).
Flags: qe-verify-
Comment 30•7 years ago
|
||
Was there a follow up discussion/bug concerning the more general situation with panel focus? I don't follow how a11y code can possibly solve this without frontend hacks/workarounds/whatever. 1. This is not just related to a11y code; the problem is also relevant for keyboard only users, which is not a11y code. So, even if we could solve this in a11y code, frontend would still have to solve it for keyboard users. 2. I don't follow why it makes sense for a11y to have its own notion of focus as suggested in comment 15. By most definitions, keyboard focus *is* inside the panel, since pressing tab moves to the next item in the panel. To put this another way, why does it make sense for focus to be null when the panel is opened? I don't follow how having focus in limbo ever makes sense. I also don't understand why we would want to have two separate notions of focus. At the very least, that's super confusing. I raise this again because we have another problem in that site identity panel. When you press the "Show connection details" button, focus again goes into limbo and a screen reader doesn't know what to report. Putting a11y clients aside, a keyboard user would have to press tab after pressing the button, which is pretty non-standard behaviour. I'll file a separate bug for this, but wanted to check whether I was missing a more generic bug/discussion.
Comment 31•7 years ago
|
||
Please file another bug, yes. I don't recall how it relates to this bug, but there is a general issue as the keyboard focus is not always the same as the active accessible item, as there are elements that cannot receive the keyboard focus yet can be the active accessible.
You need to log in
before you can comment on or make changes to this bug.
Description
•