printpreview_images.html (671B)
1 <!doctype html> 2 <style> 3 img, object, svg, input { display: block } 4 div { 5 content: url(blue-32x32.png); 6 width: 32px; 7 height: 32px; 8 } 9 </style> 10 <div></div> 11 <picture> 12 <source srcset="blue-32x32.png"> 13 <img width=32 height=32> 14 </picture> 15 <picture> 16 <source srcset="blue-32x32.png" media="print"> 17 <source srcset="animated.gif" media="not print"> 18 <img width=32 height=32> 19 </picture> 20 <img src="blue-32x32.png" width=32 height=32> 21 <object data="blue-32x32.png" width=32 height=32></object> 22 <svg width="32" height="32"> 23 <image x=0 y=0 href="blue-32x32.png" width=32 height=32></image> 24 </svg> 25 <input type="image" src="blue-32x32.png" width=32 height=32>