You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There are two "View More" links on the page, so they aren't explicit for screen reader users who may listen to them out of context. They also will be difficult for speech recognition software users to invoke either of these links.
Right click on each link and select "Inspect Element"
View the code and note that there's insufficient additional context for either "View More" link (currently, this text is in a title attribute)
Behavior
Expected behavior
If these links can't be given explicit, visible link text instead of "View More", they must have additional descriptive text. This text could be in an aria-label or hidden text, so that screen reader users will be able to distinguish between these links when they read them in a contextual list of links.
Actual behavior
There's no additional text for these links, except in a title attribute, which most screen reader users won't be able to hear. Speech recognition users will have to use mouse grid to select either of these links; this is a lengthy process which slows down their user experience.
Code
Current Code
<a href="/coronavirus/2019-ncov/community/index.html" class="cta-button" title="View more about keeping communities safe">
View More
</a>
<a href="/coronavirus/2019-ncov/whats-new-all.html" class="cta-button" title="View latest updates">
View More
</a>
Suggested Code
<a href="/coronavirus/2019-ncov/community/index.html" class="cta-button" title="View more about keeping communities safe" aria-label="View more about keeping communities safe">
View More
</a>
<a href="/coronavirus/2019-ncov/whats-new-all.html" class="cta-button" title="View latest updates" aria-label="View latest updates">
View More
</a>
Issue Summary
There are two "View More" links on the page, so they aren't explicit for screen reader users who may listen to them out of context. They also will be difficult for speech recognition software users to invoke either of these links.
Steps to reproduce
Steps to reproduce the behavior:
Behavior
Expected behavior
If these links can't be given explicit, visible link text instead of "View More", they must have additional descriptive text. This text could be in an aria-label or hidden text, so that screen reader users will be able to distinguish between these links when they read them in a contextual list of links.
Actual behavior
Code
Current Code
Suggested Code
Additional References
The text was updated successfully, but these errors were encountered: