clipPath-basic-01.svg 400 B

123456789101112131415161718
  1. <svg xmlns="http://www.w3.org/2000/svg" version="1.1">
  2. <title>Testcase for basic clipPath</title>
  3. <!-- From https://bugzilla.mozilla.org/show_bug.cgi?id=377892 -->
  4. <defs>
  5. <clipPath id="clip">
  6. <rect width="0%" height="0%"/>
  7. </clipPath>
  8. </defs>
  9. <rect width="100%" height="100%" fill="lime"/>
  10. <rect width="100%" height="100%" fill="red" clip-path="url(#clip)"/>
  11. </svg>