Sachsentext

All "input" elements with a type of "image" must have an "alt" attribute which is not placeholder text

All input elements with a type of "image" should have an "alt" attribute, and that attribute should not just be placeholder text like "image" or "button".

Example

Wrong

<input type="image" name="search" src="search.png" alt="image"/>

Right

<input type="image" name="search" src="search.png" alt="Search"/>