Sachsentext

An image within a link cannot have an empty "alt" attribute if there is no other text within the link

Any image that is within a link (an a element) that has no other text cannot have an empty or missing "alt" attribute.

Example

Wrong

<a href="index.html"><img src="home.png" alt="">

Right

<a href="index.html"><img src="home.png" alt="Return Home"></a>