blob: 8a2ee94fef576c41a489c22bba7659f8c1149cde [file] [log] [blame]
<?xml version="1.0"?>
<!DOCTYPE wml PUBLIC "-//WAPFORUM//DTD WML 1.1//EN" "http://www.wapforum.org/DTD/wml_1.1.xml">
<wml>
<card title="Test image">
<p> Test for img element in WML </p>
<p> This image can be specified by both src and localsrc attributes of img element</p>
<p> 1) localsrc takes precedence over src attribute <br/>
Image<img src="resources/fail.png" localsrc="resources/pass.png" alt="IMAGE"/>Image
<br/>
2) localsrc can't locate the image, src works <br/>
Image<img src="resources/pass.png" localsrc="wrongpath/fail.png" alt="IMAGE"/>Image
<br/>
3) neither localsrc nor src can locate the image, alt works <br/>
Image<img src="wrongpath/fail.png" localsrc="wrongpath/fail.png" alt="PASS"/>Image
</p>
</card>
</wml>