clipPath-basic-02.svg 612 B

12345678910111213141516171819202122232425
  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 invalid clipPath</title>
  7. <!-- From https://bugzilla.mozilla.org/show_bug.cgi?id=547062 -->
  8. <defs>
  9. <clipPath id="clip">
  10. <!-- containers are not allowed in clipPath -->
  11. <g>
  12. <rect width="100%" height="100%" fill="red"/>
  13. </g>
  14. </clipPath>
  15. </defs>
  16. <rect width="100%" height="100%" fill="lime"/>
  17. <rect width="100%" height="100%" fill="red" clip-path="url(#clip)"/>
  18. </svg>