anim-use-length-02.svg 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. <!--
  2. Any copyright is dedicated to the Public Domain.
  3. http://creativecommons.org/publicdomain/zero/1.0/
  4. -->
  5. <svg xmlns="http://www.w3.org/2000/svg"
  6. xmlns:xlink="http://www.w3.org/1999/xlink"
  7. class="reftest-wait">
  8. <title>Test animation of the "width" &amp; "height" &lt;length&gt; attributes on the "use" element</title>
  9. <script type="text/javascript">
  10. function doTest() {
  11. setTimeAndSnapshot(1, true);
  12. }
  13. window.addEventListener("MozReftestInvalidate", doTest, false);
  14. </script>
  15. <script xlink:href="smil-util.js" type="text/javascript"/>
  16. <defs>
  17. <g id="g1">
  18. <rect width="100" height="50" fill="lime" />
  19. </g>
  20. <g id="g2">
  21. <rect y="50" width="100" height="50" fill="lime" />
  22. </g>
  23. </defs>
  24. <rect width="100%" height="100%" fill="lime"/>
  25. <rect width="100" height="100" fill="red" />
  26. <use xlink:href="#g1">
  27. <set attributeName="width"
  28. to="0" begin="0s" dur="0.5s"/>
  29. </use>
  30. <use xlink:href="#g2">
  31. <set attributeName="height"
  32. to="0" begin="0s" dur="0.5s"/>
  33. </use>
  34. </svg>