objectBoundingBox-and-pattern-01a.svg 626 B

12345678910111213141516171819
  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. <title>Testcase for elements referencing an objectBoundingBox pattern</title>
  7. <!-- From https://bugzilla.mozilla.org/show_bug.cgi?id=338596 -->
  8. <defs>
  9. <pattern id="test" width="100%" height="100%" patternUnits="objectBoundingBox" patternContentUnits="objectBoundingBox">
  10. <rect x="0" y="0" width="1" height="1" fill="lime"/>
  11. </pattern>
  12. </defs>
  13. <rect x="20" y="20" width="200" height="200" fill="url(#test)"/>
  14. </svg>