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

Accessibility issue: links inside MenuItem break the menu accessibility #481

Closed
Ke1sy opened this issue Jun 9, 2022 · 0 comments
Closed

Comments

@Ke1sy
Copy link
Contributor

Ke1sy commented Jun 9, 2022

Issue:
If the MunuItem has a link inside, it brokes the accessibility. During keyboard navigation (up/down keys) when you reach the MenuItem with :

  1. the focus becomes broken, the next or previous items not recieve the focus
  2. navigation allows you to go out of menu (but it shouldn't go outside)

Menu code:

const children1 = [
  <MenuItem key="1">Text 1</MenuItem>,
  <MenuItem key="2"><a href={'/'}>Link is here</a></MenuItem>,
  <MenuItem key="3" >
    3
  </MenuItem>,
  <MenuItem key="4">Text 4</MenuItem>,
];

How to test:

  1. Reach the menu with Tab key
  2. Navigate with down arrow key through menu items
  3. After reaching the MenuItem with <a> continue navigating with down/up arrow key

NVDA log:
menu
Text 1 1 of 4
Link is here visited link menu item
menu item 3
menu item Text 4
out of menu heading level 3 inline

@Ke1sy Ke1sy changed the title Accessibility issue: links inside MenuItem broke the menu accessibility Accessibility issue: links inside MenuItem break the menu accessibility Jun 9, 2022
@Ke1sy Ke1sy closed this as completed Jun 9, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant