Skip to content

Instantly share code, notes, and snippets.

@SteveBarnett
Created November 9, 2023 18:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save SteveBarnett/8dc989ea9a49a49999ad376fd471fa3c to your computer and use it in GitHub Desktop.
Save SteveBarnett/8dc989ea9a49a49999ad376fd471fa3c to your computer and use it in GitHub Desktop.
Does an automated accessibility test catch it?
<!-- 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