OLD | NEW |
(Empty) | |
| 1 <!DOCTYPE html> |
| 2 <p>crbug.com/644802: Render alt text per html5 spec</p> |
| 3 <div style="columns:4; -moz-columns: 4; height: 800px;"> |
| 4 <div style="break-inside: avoid;"> |
| 5 <p>Different dimensions</p> |
| 6 1.<img src="test.jpg" alt="alt text" style="height:16px; width:16px; background-
color: green;"/> <br> |
| 7 2.<img src="test.jpg" alt="alt text" style="width:16px; background-color: green;
"/><br> |
| 8 3.<img src="test.jpg" alt="alt text" style="height:16px; background-color: green
;"/><br> |
| 9 4.<img src="test.jpg" alt="alt text" style="background-color: green;"/> |
| 10 </div> |
| 11 |
| 12 <div style="break-inside: avoid;"> |
| 13 <p>Different dimensions, no alt text</p> |
| 14 1.<img src="test.jpg" style="height:16px; width:16px; background-color: green;"/
><br> |
| 15 2.<img src="test.jpg" style="width:16px; background-color: green;"/><br> |
| 16 3.<img src="test.jpg" style="height:16px; background-color: green;"/><br> |
| 17 4.<img src="test.jpg" /> |
| 18 </div> |
| 19 |
| 20 <div style="break-inside: avoid;"> |
| 21 <p>Different dimensions, no alt text, src = ""</p> |
| 22 1.<img src="" style="height:16px; width:16px; background-color: green;"/><br> |
| 23 2.<img src="" style="width:16px; background-color: green;"/><br> |
| 24 3.<img src="" style="height:16px; background-color: green;"/><br> |
| 25 4.<img src="" /><br> |
| 26 </div> |
| 27 |
| 28 <div style="break-inside: avoid;"> |
| 29 <p>Different dimensions, no alt text, no src</p> |
| 30 1.<img style="height:16px; width:16px; background-color: green;"/> <br> |
| 31 2.<img style="width:16px; background-color: green;"/> <br> |
| 32 3.<img style="height:16px; background-color: green;"/> <br> |
| 33 4.<img /> |
| 34 </div> |
| 35 |
| 36 <div style="break-inside: avoid;"> |
| 37 <p>Different dimensions, alt text, src = ""</p> |
| 38 1.<img src="" alt="alt text" style="height:16px; width:16px; background-color: g
reen;"/> <br> |
| 39 2.<img src="" alt="alt text" style="width:16px; background-color: green;"/> <br> |
| 40 3.<img src="" alt="alt text" style="height:16px; background-color: green;"/> <br
> |
| 41 4.<img src="" /> <br> |
| 42 </div> |
| 43 |
| 44 <div style="break-inside: avoid;"> |
| 45 <p>Different dimensions, alt text, no src</p> |
| 46 1.<img alt="alt text" style="height:16px; width:16px; background-color: green;"/
> <br> |
| 47 2.<img alt="alt text" style="width:16px; background-color: green;"/> <br> |
| 48 3.<img alt="alt text" style="height:16px; background-color: green;"/> <br> |
| 49 4.<img alt="alt text"/> <br> |
| 50 </div> |
| 51 |
| 52 <div style="break-inside: avoid;"> |
| 53 <p>Different dimensions, alt text, src = </p> |
| 54 1.<img src alt="alt text" style="height:16px; width:16px; background-color: gree
n;"/> <br> |
| 55 2.<img src alt="alt text" style="width:16px; background-color: green;"/> <br> |
| 56 3.<img src alt="alt text" style="height:16px; background-color: green;"/> <br> |
| 57 4.<img src /> <br> |
| 58 </div> |
| 59 </div> |
| 60 |
OLD | NEW |