DEV 6.1 All images must have alt text to convey equivalent information
Compare with WAI & NDA checkpoints
NDA checkpoint: 1.1 (P1)
NDA checkpoint: 1.1 (P1)
Examples




Coding when a redundant text link is present
When in the same anchor <a> tag :
<a href="apples.html">
<img src="applesicon.gif"
alt=""> <!-- NULL alt text-->
apples
</a>
When NOT in the same anchor <a> tag :
<td> <!-- <a> can't cross table cells -->
<a href="apples.html">
<img src="applesicon.gif" alt="apples"> <!-- put alt in -->
</a>
</td>
<td>
<a href="apples.html">
apples
</a>
</td>
