-
Notifications
You must be signed in to change notification settings - Fork 801
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
isFocusable is too strict on tabindex #4632
Labels
Comments
Hi @WilcoFiers. Can I work on this? |
@ahmedhalac, yeah that would be great! |
ahmedhalac
added a commit
to ahmedhalac/axe-core
that referenced
this issue
Nov 11, 2024
Ensures tabindex is correctly parsed as an integer using regex instead of parseInt to comply with HTML standards. Related to dequelabs#4632
ahmedhalac
added a commit
to ahmedhalac/axe-core
that referenced
this issue
Nov 13, 2024
ahmedhalac
added a commit
to ahmedhalac/axe-core
that referenced
this issue
Nov 13, 2024
Add parseTabindex method in lib/core/utils and reused it in multiple places across the codebase Related to dequelabs#4632
ahmedhalac
added a commit
to ahmedhalac/axe-core
that referenced
this issue
Nov 19, 2024
ahmedhalac
added a commit
to ahmedhalac/axe-core
that referenced
this issue
Nov 19, 2024
straker
pushed a commit
that referenced
this issue
Mar 4, 2025
Ensures tabindex is correctly parsed as an integer using regex instead of parseInt to comply with HTML standards. Closes #4632
Merged
WilcoFiers
added a commit
that referenced
this issue
Mar 5, 2025
### Bug Fixes - **aria-allowed-role:** Add math to allowed roles for img element ([#4658](#4658)) ([f6dddd9](f6dddd9)), closes [#4657](#4657) - **captions:** fix grammar in captions check incomplete message ([#4661](#4661)) ([3ef7058](3ef7058)) - consistently parse tabindex, following HTML 5 spec ([#4637](#4637)) ([3b0a361](3b0a361)), closes [#4632](#4632) - **core:** measure perf for async checks ([#4609](#4609)) ([e7dc26e](e7dc26e)) - **locale:** fixed typos in german (DE) locale ([#4631](#4631)) ([0740980](0740980)) - **locale:** proofread and updated de.json ([#4643](#4643)) ([910cdb2](910cdb2)) - **no-autoplay-audio:** don't timeout for preload=none media elements ([#4684](#4684)) ([b7f1ad1](b7f1ad1)) - **target-size:** do not treat focusable tabpanels as targets ([#4702](#4702)) ([67d4e4f](67d4e4f)), closes [#4421](#4421) [#4701](#4701)
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
The way axe-core checks whether tabindex is valid is by calling
parseInt()
. That's different from how HTMLhttps://html.spec.whatwg.org/#rules-for-parsing-integers says to do it. Basically, axe should use this to match, and then parseInt the captured group:/^\s*([-+]?\d+)/
The issue is here:
lib/commons/dom/is-focusable.js
The tests for it need to be here:
test/commons/dom/is-focusable.js
The text was updated successfully, but these errors were encountered: