<?xml version="1.0" encoding="UTF-8"?> | |
<svg xmlns="http://www.w3.org/2000/svg" width="100%" height="100%"> | |
<title>SVG 1.1 2nd Edition Test: Markers and zero-length 'path' and 'line' segments</title> | |
<g> | |
<defs> | |
<marker id="testMarker" viewBox="0 0 100 100"> | |
<rect width="96" height="96" fill="green"/> | |
</marker> | |
</defs> | |
<path d="m 0 0 L 0 0" stroke-width="25" marker-end="url(#testMarker)"/> | |
<line x1="0" x2="0" y1="100" y2="100" stroke-width="25" marker-end="url(#testMarker)"/> | |
</g> | |
</svg> |