Created
November 9, 2023 18:38
-
-
Save SteveBarnett/8dc989ea9a49a49999ad376fd471fa3c to your computer and use it in GitHub Desktop.
Does an automated accessibility test catch it?
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- Missing text alternative --> | |
<!-- π€ caught by automated test --> | |
<img src="pup.jpg"> | |
<!-- Bad text alternative --> | |
<!-- Not actually an alternative --> | |
<!-- π§ not caught by automated test --> | |
<img src="pup.jpg" alt="dog"> | |
<!-- Great text alternative --> | |
<!-- Conveys the same information as the image --> | |
<!-- β passes automated test --> | |
<img src="pup.jpg" alt="Cute puppy frolicking in a field"> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment