Ensure custom controls are keyboard accessible

Description

[Partially Fixed] - 3/16/2018

[Issue] "<<" element receive keyboard focus and announce its title which is "Expand/collapse tool navigation". However, it does not have visual keyboard focus.

[User Impact]Without a clear visual indication, users operating the page visually with pure keyboard input may not be able to determine which element has focus.

<button title="Expand/collapse tool navigation"class="Mrphs-toggleNav js-toggle-nav btn-link max " type="button" aria-pressed="false" >

The left hand side navigation of the environment provides a series of links that can be used to navigate through pages of content. A control is provided at the top of the navigation that when activated allows the user to either expand or collapse the side navigation entirely. However, this control currently does not receive keyboard focus and therefore cannot be activated by a keyboard only user.

<li class="Mrphs-toolsNav__menuitem Mrphs-collapseTools js-toggle-nav"><i class="fa fa-lg fa-angle-double-left"></i></li>

[Expected Behaviour]All actionable elements should assign a visually prominent, non-color reliant visual indication of focus as part of an explicit ::focus rule. Ideally, this rule should use the { outline } property, as this property is hooked by assistive technologies and accessibility related configurations to provide enhanced visual indication of focus. Developers must ensure that all simulated controls implemented provide support for keyboard accessibility. As this control is created by placing event handlers on an

<li> element, the element itself must be assigned <tabindex="0">

in order to draw keyboard focus, as well as device-independent event handlers to allow keyboard only users to activate the control with the "Enter" key.

Activity

Sam Ottenhoff May 21, 2018 at 1:41 PM

Per conf call with LA, this was an issue with Firefox and/or IE and not with Chrome

Sam Ottenhoff April 25, 2018 at 6:32 PM

I submitted a PR to adjust color contrast. But I still don't see any good explanation from LA why this was marked partially fixed.

Sam Ottenhoff April 23, 2018 at 9:13 AM

I don't understand why this is "partially fixed". It looks fully fixed to me.

Fixed

Details

Priority

Affects versions

Fix versions

Assignee

Reporter

Created April 19, 2018 at 7:36 AM
Updated September 11, 2019 at 9:29 AM
Resolved April 27, 2018 at 2:22 PM

Flag notifications