Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(221)

Side by Side Diff: LayoutTests/svg/animations/animate-list-crash.svg

Issue 10445006: Merge 116458 (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/1132/
Patch Set: Created 8 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 <svg xmlns="http://www.w3.org/2000/svg"> 1 <svg xmlns="http://www.w3.org/2000/svg">
2 <!-- Test for WK85382 - passes if there is no crash --> 2 <!-- Test for WK85382 - passes if there is no crash -->
3 <polygon> 3 <polygon>
4 <animate values="1,2; 3,4; abc" attributeName="points"/> 4 <animate values="1,2; 3,4; abc" attributeName="points"/>
5 </polygon> 5 </polygon>
6 <tspan> 6 <tspan>
7 <animate values="1; 2; a" attributeName="rotate"/> 7 <animate values="1; 2; a" attributeName="rotate"/>
8 </tspan> 8 </tspan>
9 <tspan> 9 <tspan>
10 <animate values="1; 2; a" attributeName="x"/> 10 <animate values="1; 2; a" attributeName="x"/>
11 </tspan> 11 </tspan>
12 <path> 12 <path>
13 <!-- doesn't crash but added to catch regressions --> 13 <!-- doesn't crash but added to catch regressions -->
14 <animate values="m1,1 2,2z; m1,1 2,2z; m1,1z" attributeName="d"/> 14 <animate values="m1,1 2,2z; m1,1 2,2z; m1,1z" attributeName="d"/>
15 </path> 15 </path>
16 <text id="log"/> 16 <text id="log"/>
17 <script> 17 <script>
18 <![CDATA[ 18 <![CDATA[
19 document.getElementById("log").appendChild(document.createTextNode("PASS")); 19 document.getElementById("log").appendChild(document.createTextNode("PASS"));
20 if (window.layoutTestController) 20 if (window.layoutTestController)
21 window.layoutTestController.dumpAsText(); 21 window.layoutTestController.dumpAsText();
22 ]]> 22 ]]>
23 </script> 23 </script>
24 </svg> 24 </svg>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698