alt text and no title attribute on img elements for images that assistive technology should ignoreHTML documents that load images.
The purpose of this technique is to show how images can be marked so that they can be ignored by assistive technology.
If no title attribute is used, and the alt text is set to null (i.e., alt="") it indicates to assistive technology that the image can be safely ignored.
Having a "null" alt attribute is not the same as having no alt attribute.
<img alt="" src="squiggle.gif" height="20" width="20">
For each image that should be ignored:
title attribute is either absent or empty.alt attribute is present and empty.