blob: 1308e0edfd9a2fc8160ce2845d0bfd311fcf39e4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
<svg version="1.1" xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
class="reftest-wait">
<title>Test animation element in 'defs' element with 'width' attribute</title>
<script xlink:href="smil-util.js" type="text/javascript"/>
<rect id="target" fill="lime" width="0%" height="100%"/>
<defs>
<animate xlink:href="#target"
attributeName="width"
values="0%;100%"
calcMode="discrete"
dur="100s"/>
</defs>
<script>
window.addEventListener("MozReftestInvalidate", function() {
setTimeAndWaitToSnapshot(49.9, 0.1);
});
</script>
</svg>
|