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

SC 412 -- Back arrow is read aloud in the back button #16

Open
damiansian opened this issue Jan 4, 2025 · 0 comments
Open

SC 412 -- Back arrow is read aloud in the back button #16

damiansian opened this issue Jan 4, 2025 · 0 comments
Labels
bug Something isn't working

Comments

@damiansian
Copy link

damiansian commented Jan 4, 2025

URL

https://demo.fileyourstatetaxes.org/en/questions/contact-preference

Issue

The arrow graphic is being read aloud by the screen reader as it is getting inserted via CSS and impacts the accessible name of the control.

WCAG Success Criterion

SC 4.1.2: Name, Role, Value (Level A)

User Impact

The accessible name of a control has to match it's function.

Suggested fixes

Current computed accessible name is:

Back arrow, Go Back

<div class="back grid" >
            <a href="/en/questions/eligible">Go back</a>
          </div>

Should be

Go back

<div class="back grid" aria-label="Go back">
            <a href="/en/questions/eligible">Go back</a>
          </div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
Development

No branches or pull requests

1 participant