clipPath-basic-03.svg 736 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" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1">
  6. <title>Testcase for invalid clipPath</title>
  7. <!-- From https://bugzilla.mozilla.org/show_bug.cgi?id=547062 -->
  8. <defs>
  9. <rect id="r1" width="100%" height="100%" fill="red"/>
  10. <use id="use2" xlink:href="#r1"/>
  11. <clipPath id="clip">
  12. <!-- use must point directly to text, path or a basic shape -->
  13. <use xlink:href="#use2" fill="red" />
  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>