Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / svg / animations / animate-list-crash.svg
blobf1ddfad705c67c41e61c559519e0e6f9cc5d11a9
1 <svg xmlns="http://www.w3.org/2000/svg">
2 <!-- Test for WK85382 - passes if there is no crash -->
3 <polygon>
4 <animate values="1,2; 3,4; abc" attributeName="points"/>
5 </polygon>
6 <tspan>
7 <animate values="1; 2; a" attributeName="rotate"/>
8 </tspan>
9 <tspan>
10 <animate values="1; 2; a" attributeName="x"/>
11 </tspan>
12 <path>
13 <!-- doesn't crash but added to catch regressions -->
14 <animate values="m1,1 2,2z; m1,1 2,2z; m1,1z" attributeName="d"/>
15 </path>
16 <text id="log"/>
17 <script>
18 <![CDATA[
19 document.getElementById("log").appendChild(document.createTextNode("PASS"));
20 if (window.testRunner)
21 window.testRunner.dumpAsText();
22 ]]>
23 </script>
24 </svg>