chromium/third_party/blink/web_tests/svg/animations/animate-list-crash.svg

<svg xmlns="http://www.w3.org/2000/svg">
  <!-- Test for WK85382 - passes if there is no crash -->
  <polygon>
    <animate values="1,2; 3,4; abc" attributeName="points"/>
  </polygon>
  <tspan>
     <animate values="1; 2; a" attributeName="rotate"/>
  </tspan>
  <tspan>
     <animate values="1; 2; a" attributeName="x"/>
  </tspan>
  <path>
     <!-- doesn't crash but added to catch regressions -->
     <animate values="m1,1 2,2z; m1,1 2,2z; m1,1z" attributeName="d"/>
  </path>
  <text id="log"/>
  <script>
  <![CDATA[
    document.getElementById("log").appendChild(document.createTextNode("PASS"));
    if (window.testRunner)
      testRunner.dumpAsText();
  ]]>
  </script>
</svg>