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

Side by Side Diff: LayoutTests/svg/W3C-SVG-1.1/animate-elem-23-t.svg

Issue 137443006: Remove support for <animateColor>. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: test adjustments Created 6 years, 11 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 <?xml version="1.0" encoding="UTF-8"?> 1 <?xml version="1.0" encoding="UTF-8"?>
2 <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/ SVG/1.1/DTD/svg11-tiny.dtd"> 2 <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/ SVG/1.1/DTD/svg11-tiny.dtd">
3 3
4 <!--======================================================================--> 4 <!--======================================================================-->
5 <!--= Copyright 2000 World Wide Web Consortium, (Massachusetts =--> 5 <!--= Copyright 2000 World Wide Web Consortium, (Massachusetts =-->
6 <!--= Institute of Technology, Institut National de Recherche en =--> 6 <!--= Institute of Technology, Institut National de Recherche en =-->
7 <!--= Informatique et en Automatique, Keio University). All Rights =--> 7 <!--= Informatique et en Automatique, Keio University). All Rights =-->
8 <!--= Reserved. See http://www.w3.org/Consortium/Legal/. =--> 8 <!--= Reserved. See http://www.w3.org/Consortium/Legal/. =-->
9 <!--======================================================================--> 9 <!--======================================================================-->
10 <!--======================================================================--> 10 <!--======================================================================-->
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after
70 70
71 <g > 71 <g >
72 <!-- The following illustrates the use of the 'set', 72 <!-- The following illustrates the use of the 'set',
73 and 'animateColor' elements. The 'text' element 73 and 'animateColor' elements. The 'text' element
74 below starts off hidden (i.e., invisible). At 3 seconds, it: 74 below starts off hidden (i.e., invisible). At 3 seconds, it:
75 * becomes visible 75 * becomes visible
76 * changes color from blue to dark red 76 * changes color from blue to dark red
77 --> 77 -->
78 <rect x="150" y="50" width="240" height="240" stroke="black" fill="b lack"/> 78 <rect x="150" y="50" width="240" height="240" stroke="black" fill="b lack"/>
79 <circle cx="270" cy="170" r="110" visibility="hidden" > <set attributeName="visibility" attributeType="CSS" to="visible" begin="3s" dur= "6s" fill="freeze"/> 79 <circle cx="270" cy="170" r="110" visibility="hidden" > <set attributeName="visibility" attributeType="CSS" to="visible" begin="3s" dur= "6s" fill="freeze"/>
80 » » » <animateColor attributeName="fill" attributeType="CSS" from="rgb(0,0,255)" to="rgb(128,0,0)" begin="3s" dur="6s" fill="freeze"/> 80 » » » <animate attributeName="fill" attributeType="CSS" from= "rgb(0,0,255)" to="rgb(128,0,0)" begin="3s" dur="6s" fill="freeze"/>
81 </circle> 81 </circle>
82 </g> 82 </g>
83 </g> 83 </g>
84 <text id="revision" x="10" y="340" font-size="40" stroke="none" fill="bl ack">$Revision: 1.7 $</text> 84 <text id="revision" x="10" y="340" font-size="40" stroke="none" fill="bl ack">$Revision: 1.7 $</text>
85 <rect id="test-frame" x="1" y="1" width="478" height="358" fill="none" s troke="#000000"/> 85 <rect id="test-frame" x="1" y="1" width="478" height="358" fill="none" s troke="#000000"/>
86 </svg> 86 </svg>
87 87
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698