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

Side by Side Diff: LayoutTests/svg/W3C-SVG-1.1/animate-elem-30-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 <!-- =====================================================================--> 2 <!-- =====================================================================-->
3 <!-- animate-elem-30-t.svg --> 3 <!-- animate-elem-30-t.svg -->
4 <!-- --> 4 <!-- -->
5 <!-- Tests various types of animations on referenced elements. --> 5 <!-- Tests various types of animations on referenced elements. -->
6 <!-- --> 6 <!-- -->
7 <!-- Author : Ola Andersson, 22-Sep-2003 --> 7 <!-- Author : Ola Andersson, 22-Sep-2003 -->
8 <!--======================================================================--><!D OCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG /1.1/DTD/svg11-tiny.dtd"> 8 <!--======================================================================--><!D OCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG /1.1/DTD/svg11-tiny.dtd">
9 9
10 <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlin k" version="1.1" baseProfile="tiny" id="svg-root" width="100%" height="100%" vie wBox="0 0 480 360"> 10 <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlin k" version="1.1" baseProfile="tiny" id="svg-root" width="100%" height="100%" vie wBox="0 0 480 360">
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
61 61
62 <!-- DEFS--> 62 <!-- DEFS-->
63 <defs> 63 <defs>
64 <line id="lineID" x1="30" y1="50" x2="10" y2="10" stroke="rgb(16, 93, 1 40)" stroke-width="3"> 64 <line id="lineID" x1="30" y1="50" x2="10" y2="10" stroke="rgb(16, 93, 1 40)" stroke-width="3">
65 <animate attributeName="x1" from="30" to="90" begin="0" dur="3" fill ="freeze"/> 65 <animate attributeName="x1" from="30" to="90" begin="0" dur="3" fill ="freeze"/>
66 </line> 66 </line>
67 </defs> 67 </defs>
68 68
69 <defs> 69 <defs>
70 <rect id="rectID" x="10" y="60" width="60" height="20" fill="blue" stro ke="black" stroke-width="2"> 70 <rect id="rectID" x="10" y="60" width="60" height="20" fill="blue" stro ke="black" stroke-width="2">
71 <animateColor attributeName="fill" from="white" to="rgb(16, 93, 140) " begin="0" dur="3" fill="freeze"/> 71 <animate attributeName="fill" from="white" to="rgb(16, 93, 140)" beg in="0" dur="3" fill="freeze"/>
72 <animate attributeName="height" from="20" to="40" begin="0" dur="3" fill="freeze"/> 72 <animate attributeName="height" from="20" to="40" begin="0" dur="3" fill="freeze"/>
73 </rect> 73 </rect>
74 </defs> 74 </defs>
75 75
76 <defs> 76 <defs>
77 <circle id="circleID" cx="20" cy="100" r="10" fill="rgb(16, 93, 140)" s troke="black"> 77 <circle id="circleID" cx="20" cy="100" r="10" fill="rgb(16, 93, 140)" s troke="black">
78 <animate attributeName="cy" from="100" to="130" begin="0" dur="3" fi ll="freeze"/> 78 <animate attributeName="cy" from="100" to="130" begin="0" dur="3" fi ll="freeze"/>
79 <animateTransform attributeName="transform" type="scale" from="1" to ="1.5" additive="sum" begin="0" dur="3" fill="freeze"/> 79 <animateTransform attributeName="transform" type="scale" from="1" to ="1.5" additive="sum" begin="0" dur="3" fill="freeze"/>
80 </circle> 80 </circle>
81 </defs> 81 </defs>
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
125 125
126 <use xlink:href="#imageID"> 126 <use xlink:href="#imageID">
127 <animateTransform attributeName="transform" type="scale" from="1 .25" t o="1 1" begin="0" dur="3" additive="sum" fill="freeze"/> 127 <animateTransform attributeName="transform" type="scale" from="1 .25" t o="1 1" begin="0" dur="3" additive="sum" fill="freeze"/>
128 </use> 128 </use>
129 <!-- END OF ACTUAL TEST CONTENT--> 129 <!-- END OF ACTUAL TEST CONTENT-->
130 </g> 130 </g>
131 131
132 <text id="revision" x="10" y="340" font-size="40" stroke="none" fill="black"> $Revision: 1.6 $</text> 132 <text id="revision" x="10" y="340" font-size="40" stroke="none" fill="black"> $Revision: 1.6 $</text>
133 <rect id="test-frame" x="1" y="1" width="478" height="358" fill="none" stroke ="#000000"/> 133 <rect id="test-frame" x="1" y="1" width="478" height="358" fill="none" stroke ="#000000"/>
134 </svg> 134 </svg>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698