svg-images-are-ignored-ref.html (669B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <meta charset="utf-8"> 5 <title>CSS Image Test: SVG used as an image does not load images - mismatch reference</title> 6 <link rel="author" title="Stephen Chenney" href="mailto:schenney@chromium.org"> 7 <style> 8 * { 9 padding: 0px; 10 margin: 0px; 11 } 12 .top-left { 13 position: absolute; 14 left: 0px; 15 top: 0px; 16 } 17 .bottom-left { 18 position: absolute; 19 left: 0px; 20 top: 60px; 21 } 22 </style> 23 </head> 24 <body> 25 <img class="top-left" src="support/60x60-green.png"/> 26 <img class="bottom-left" src="support/60x60-green.png"/> 27 </body> 28 </html>