blob: a3aa5a25868f76ab0be2618e64b98d182508d707 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
<!--
Any copyright is dedicated to the Public Domain.
http://creativecommons.org/publicdomain/zero/1.0/
-->
<svg xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
class="reftest-wait"
onload="setTimeAndSnapshot(1, true)">
<title>Test animation of the "xlink:href" <string> attribute on the "use" element</title>
<script xlink:href="smil-util.js" type="text/javascript"/>
<defs>
<symbol id="sym1">
<rect x="20" y="150" width="440" height="80" fill="red" />
</symbol>
<symbol id="sym2">
<rect x="20" y="150" width="440" height="80" fill="lime" />
</symbol>
</defs>
<rect width="100%" height="100%" fill="lime"/>
<use xlink:href="#sym1">
<animate attributeName="xlink:href"
calcMode="discrete"
begin="0s" dur="0.5s"
from="#sym1" to="#sym2"
fill="freeze"/>
</use>
</svg>
|