clipPath-basic-04.svg 626 B

1234567891011121314151617181920212223
  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" version="1.1">
  6. <title>Testcase for clipPath with animateTransform</title>
  7. <!-- From https://bugzilla.mozilla.org/show_bug.cgi?id=553053 -->
  8. <defs>
  9. <clipPath id="clip">
  10. <rect width="100%" height="100%" fill="lime"/>
  11. <animateTransform attributeName="transform" type="scale" values="1"/>
  12. </clipPath>
  13. </defs>
  14. <rect width="100%" height="100%" fill="red"/>
  15. <rect width="100%" height="100%" fill="lime" clip-path="url(#clip)"/>
  16. </svg>