wpt / svg / animations / invalid-attribute-type-does-not-block-other-animations.html

Status: FAIL | Duration: 9ms | Subtests: 0/1 | Open test on wpt.live | Open ref on wpt.live | wpt.fyi

/svg/animations/invalid-attribute-type-does-not-block-other-animations.html

<!DOCTYPE html>
<title>An invalid attribute type in one animation group must not block other animation groups</title>
<link rel="match" href="../struct/reftests/reference/green-100x100.html">
<svg>
  <!-- Invalid animation: attributeType="CSS" on a non-CSS attribute. -->
  <rect>
    <animate attributeName="href" attributeType="CSS" values="foo" dur="1s"/>
  </rect>

  <!-- Valid animation: should still run despite the earlier invalid group. -->
  <rect width="100" height="100" fill="red">
    <set attributeName="fill" to="green" fill="freeze"/>
  </rect>
</svg>

/svg/struct/reftests/reference/green-100x100.html

<!DOCTYPE html>
<div style="width: 100px; height: 100px; background-color: green"></div>