blob: 0a2d34a7c40b97c9c87e9b02ba1d7d01a22aa652 [file] [log] [blame]
krit@webkit.org21374472010-03-30 11:28:55 +00001<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
2<rect x="10" y="10" width="50" height="50" color="green" fill="red">
krit@webkit.org4b8fea92010-04-20 17:31:43 +00003 <animateColor attributeName="fill" from="green" to="currentColor" begin="0s" dur="1s" fill="freeze"/>
krit@webkit.org21374472010-03-30 11:28:55 +00004</rect>
5<rect x="60" y="10" width="50" height="50" color="green" fill="red">
6 <animateColor attributeName="fill" from="currentColor" to="currentColor" begin="0s" dur="1s" fill="freeze"/>
7</rect>
8<rect x="10" y="60" width="50" height="50" color="green" fill="red">
9 <animateColor attributeName="fill" from="currentColor" by="black" begin="0s" dur="1s" fill="freeze"/>
10</rect>
11<rect x="60" y="60" width="50" height="50" color="black" fill="red">
12 <animateColor attributeName="fill" from="green" by="currentColor" begin="0s" dur="1s" fill="freeze"/>
13</rect>
14</svg>