krit@webkit.org | 2137447 | 2010-03-30 11:28:55 +0000 | [diff] [blame] | 1 | <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.org | 4b8fea9 | 2010-04-20 17:31:43 +0000 | [diff] [blame] | 3 | <animateColor attributeName="fill" from="green" to="currentColor" begin="0s" dur="1s" fill="freeze"/> |
krit@webkit.org | 2137447 | 2010-03-30 11:28:55 +0000 | [diff] [blame] | 4 | </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> |