wpt / svg / animations / invalid-attribute-type-does-not-block-same-group-animation.html

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

/svg/animations/invalid-attribute-type-does-not-block-same-group-animation.html

<!DOCTYPE html>
<title>An invalid attributeType on one animate must not block a subsequent animate in the same group</title>
<link rel="match" href="../struct/reftests/reference/green-100x100.html">
<svg>
  <rect width="100" height="100" fill="red">
    <animate attributeType="CSS" attributeName="fill" fill="freeze" begin="0" dur="0.05s" to="blue"/>
    <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>