wpt / svg / linking / reftests / href-image-element.html

Status: PASS | Duration: 5ms | Subtests: 1/1 | Open test on wpt.live | Open ref on wpt.live | wpt.fyi

/svg/linking/reftests/href-image-element.html

<!DOCTYPE html>
<meta charset="utf-8">
<title>href - image element</title>
<meta name="assert" content="The image should accept href">
<link rel="match" href="href-image-element-ref.html">
<body>
  <svg width="300" height="300" viewBox="0 0 300 300"
       xmlns:xlink="http://www.w3.org/1999/xlink">
    <image href="/images/green.png" xlink:href="/images/red.png"
           width="100px" height="100px"/>
  </svg>
</body>

/svg/linking/reftests/href-image-element-ref.html

<!DOCTYPE html>
<meta charset="utf-8">
<title>href - image element reference</title>
<body>
  <svg width="300" height="300" viewBox="0 0 300 300"
       xmlns:xlink="http://www.w3.org/1999/xlink">
    <image xlink:href="/images/green.png" width="100px" height="100px"/>
  </svg>
</body>