Alt text test
A cross-browser test to see how the alt attribute behaves.
HTML
<div id="noDims">
<p>Image without dimensions set</p>
<img src="someImage.jpg" alt="This is the alt text" />
</div>
<div id="dims">
<p>Image with dimensions set</p>
<img src="someImage.jpg" alt="xxx" />
</div>
CSS
div { border: 1px solid green; margin: 10px; padding:5px; }
#dims img { height: 200px;}