Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Expand/Collapse sections from Left Navigation are not operable using Jaws -Left Nav-Blocker for Jaws users #7086

Closed
ErickRenteria opened this issue Oct 20, 2020 · 3 comments

Comments

@ErickRenteria
Copy link

Expand/Collapse sections from Left Navigation are not operable using Jaws Browser mode(Default Mode).

Platform:
Version:
Operating system:Windows 10
Browser: Chrome
Section: Left Navigation-Expand Collapse Sections
URL: https://able-test.mybluemix.net/able/
WCAG 2.1 violation: 2.1.1 Keyboard (Level A)
Assistive technology used to verify: Jaws 2020

Detailed description

Details: Jaws Users are not able to access Expand/Collapse sections like Plan, Design, Develop, Verify, Launch using enter key as well as space bar. Focus is jumping to Skip to main content link at the banner region after activation of the above menu links.

Steps to reproduce the issue

  1. Open https://www.ibm.com/design/thinking/
  2. Try to access the site with Jaws AT
  3. Access the Left Navigation Menu.

Screen Shot 2020-10-19 at 8 07 43 PM

Menu is operable with out Jaws.e

  1. Side Navigation region
  2. After expanding the menus we are unable to navigate through the menu options with up/down arrow keys. But the screen reader announces we can browse through these items using arrow keys. Only with tab/shift tab keys, we are able to navigate through the menu options.
  3. When an expanded menu, screen reader starts reading out all the menu options under it. This can cause confusion to screen reader users
  4. Screen reader is not announcing role for the menu options. Recommend to give link role for menu options under the menus as they open up the respective page on activation.
  5. After expanding a menu, we are unable to collapse it. Screen reader is also not conveying the expanded state of a menu to users.

Additional information

So, here are the minimal steps that need to take place:

  1. Remove the role="menu" off the div (or just remove the div)
    image
    That will resolve the main keyboard issue they were talking about, where executing on the collapsed sections caused an odd focus loss.
  2. Add an attribute to the button of aria-expanded="false"
    Obviously that would need to be changed to "true" when the button is pressed. The reason you're adding this is to show that the button both controls the display of and indicates the state of the navigation region.
  3. Change the value of aria-label and title on the button that opens the left nav. I'd suggest "Side navigation" since that is the label given to the navigation region.
    Combined with the aria-expanded in the prior step, this will result in the user hearing "Side navigation button expanded" (or "...collapsed")
  4. Remove aria-haspopup from the buttons that form the expandable left nav items.
    These already have an aria-expanded attribute. The other is unneeded -- and incorrect, potentially causing some glitches.
    image
  5. Remove the role="menuitem" off the anchor children of the list items. They aren't menu items, and the link role is totally fine.

Together, those things resolve most of the problems. However, there are some other issues that need to be addressed:

  • the tab order does not place the left nav immediately after the button that exposes it, but instead puts it after the items in the top nav (which on the page I'm looking at is only "IBM Accessibility"). Hopefully it is a simple thing to inject the left nav before the top nav. That is the logical place. Otherwise, the user opens the left nav with the button and then doesn't proceed into it. Fortunately at the same time the left nav is collapsed, the top nav is as well, so it's only one item, but it's still confusing.
    There is a bit of a gotcha here, because in the full desktop version, (where there is no left nav button), the top nav is exposed before the left nav. However, when the breakpoint occurs, I really think the DOM order has to be changed -- or else the button to open the left nav needs to follow IBM Accessibility in the tab order (which is not really any odder than what is happening right now). I think the button itself could actually be in the nav region.
    image

  • The left nav must collapse when focus leaves the nav region, otherwise it obscures the content in the main region, as shown in this screen shot where you can't see any of the text of the item with focus. Note also that since the left nav is still open, there is a lightbox effect, graying out main content.
    image

  • I personally think visual design should get pulled in to consider whether a hamburger menu icon (when closed) and X (when open) are good affordances for indicating the expand/collapse nature of the side navigation. I would have thought something that infers something behind exposed or hidden would be better (like up and down triangles are used to indicate state and action for an expandable section). I've seen icons like this used.
    image

Final note. As mentioned in a prior comment, this all only applies to the left nav. The right-side 'navigation' is much more menu like in its appearance and constraints (no expandable sections) and I think it makes total sense to implement it as such (along with all the correct keyboard interaction).

@tay1orjones
Copy link
Member

Taking a second look at this it appears the majority of the items outlined have been addressed and are fixed. role="menu" is no longer applied to the div or ul, items don't get aria-hasPopup, etc.

Other remaining items have been reviewed recently in #12323 and have issues opened to address them.

I think this covers all the pieces outlined by this issue, so I'm going to close and mark as a duplicate of the above. If there's anything else please open and new issue.

@tay1orjones
Copy link
Member

Duplicate of #12323

@tay1orjones tay1orjones marked this as a duplicate of #12323 Apr 17, 2023
@tay1orjones tay1orjones closed this as not planned Won't fix, can't repro, duplicate, stale Apr 17, 2023
@tay1orjones
Copy link
Member

I've also opened an issue internally for the site you referenced: https://github.ibm.com/Design/EDT/issues/6008

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
Archived in project
Development

No branches or pull requests

4 participants