marker-attribute-01.svg 677 B

1234567891011121314151617181920
  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>Test there is no 'marker' presentation attribute</title>
  7. <!--
  8. From https://bugzilla.mozilla.org/show_bug.cgi?id=350100
  9. This test checks that the 'marker' presentation attribute is ignored.
  10. -->
  11. <defs>
  12. <marker id="marker" markerWidth="40" markerHeight="40" refX="20" refY="20">
  13. <circle cx="20" cy="20" r="20" fill="red"/>
  14. </marker>
  15. </defs>
  16. <rect width="100%" height="100%" fill="lime"/>
  17. <path d="M20,20 L60,20 L100,20" fill="none" stroke="none" marker="url(#marker)"/>
  18. </svg>