svg-images-are-ignored.html (979B)
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</title> 6 <link rel="author" title="Stephen Chenney" href="mailto:schenney@chromium.org"> 7 <link rel="help" href="https://html.spec.whatwg.org/multipage/embedded-content.html#the-img-element"> 8 <link rel="help" href="https://svgwg.org/svg2-draft/single-page.html#conform-referencing-modes"> 9 <link rel="match" href="svg-images-are-ignored-ref.html"> 10 <style> 11 * { 12 padding: 0px; 13 margin: 0px; 14 } 15 .top-left { 16 position: absolute; 17 left: 0px; 18 top: 0px; 19 } 20 .bottom-left { 21 position: absolute; 22 left: 0px; 23 top: 60px; 24 } 25 </style> 26 </head> 27 <body> 28 <img class="top-left" src="support/60x60-green.png"/> 29 <img class="bottom-left" src="support/60x60-green.png"/> 30 <img class="top-left" src="support/external-images.svg"/> 31 </body> 32 </html>