-
Notifications
You must be signed in to change notification settings - Fork 785
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
scrollable-region-focusable rule causing false positives #1582
Comments
Yikes! Good find. Thanks Ken! I'll make sure we fix it before the 3.3 release. |
@WilcoFiers noticed this issue is happening again. Using the axe-core 4.3.5, a clipped overflow region is getting flagged as a scrollable region I made a really simple codepen with overflow examples where axe is flagging the page as having an issue for the clipped content. |
@backwardok I see what's going on. Could you open a new issue so we can track it? Thanks. |
@straker sounds good! I'll create a new issue |
This new rule is causing standard accessible text clipping techniques to fail. For example, this CSS:
.accessible-text { position: absolute !important; clip: rect(0.0625rem 0.0625rem 0.0625rem 0.0625rem); clip: rect(0.0625rem, 0.0625rem, 0.0625rem, 0.0625rem); padding: 0 !important; border: 0 !important; height: 0.0625rem !important; width: 0.0625rem !important; overflow: hidden; }
is marked as a violation in axe-coconut.
@WilcoFiers pointed out above that elements with overflow:hidden might be exempted. I think this is a good idea.
We use axe-coconut for testing because of some of the useful experimental rules. But now we are getting vast numbers of false positives due to this new rule.
Note: I put this same text mistakenly on the PR for this rule....
The text was updated successfully, but these errors were encountered: