Status: PASS | Duration: 9ms | Subtests: 1/1 | Open test on wpt.live | Open ref on wpt.live | wpt.fyi
/css/css-images/svg-images-are-ignored.html
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>CSS Image Test: SVG used as an image does not load images</title> <link rel="author" title="Stephen Chenney" href="mailto:schenney@chromium.org"> <link rel="help" href="https://html.spec.whatwg.org/multipage/embedded-content.html#the-img-element"> <link rel="help" href="https://w3c.github.io/svgwg/svg2-draft/single-page.html#conform-referencing-modes"> <link rel="match" href="svg-images-are-ignored-ref.html"> <style> * { padding: 0px; margin: 0px; } .top-left { position: absolute; left: 0px; top: 0px; } .bottom-left { position: absolute; left: 0px; top: 60px; } </style> </head> <body> <img class="top-left" src="support/60x60-green.png"/> <img class="bottom-left" src="support/60x60-green.png"/> <img class="top-left" src="support/external-images.svg"/> </body> </html>
/css/css-images/svg-images-are-ignored-ref.html
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>CSS Image Test: SVG used as an image does not load images - mismatch reference</title> <link rel="author" title="Stephen Chenney" href="mailto:schenney@chromium.org"> <style> * { padding: 0px; margin: 0px; } .top-left { position: absolute; left: 0px; top: 0px; } .bottom-left { position: absolute; left: 0px; top: 60px; } </style> </head> <body> <img class="top-left" src="support/60x60-green.png"/> <img class="bottom-left" src="support/60x60-green.png"/> </body> </html>