1 <?xml version=
"1.0" encoding=
"UTF-8"?>
2 <!DOCTYPE svg PUBLIC
"-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
3 <svg version=
"1.1" baseProfile=
"full" xmlns=
"http://www.w3.org/2000/svg" xmlns:
xlink=
"http://www.w3.org/1999/xlink" id=
"svg-root" width=
"100%" height=
"100%" viewBox=
"0 0 480 360">
4 <g id=
"test-body-content">
5 <text x=
"0" y=
"20">This should show three markers on the path for start/mid/end.
</text>
6 <text x=
"0" y=
"40">Start marker has no markerWidth/markerHeight specified.
</text>
7 <text x=
"0" y=
"60">Mid marker has no markerWidth specified.
</text>
8 <text x=
"0" y=
"80">End marker has no markerHeight specified.
</text>
9 <marker id=
"marker1" viewBox=
"0 0 10 10" refX=
"5" refY=
"5" markerUnits=
"strokeWidth">
10 <rect width=
"10" height=
"10" fill=
"green" stroke=
"none"/>
12 <marker id=
"marker2" viewBox=
"0 0 10 10" markerHeight=
"3" refX=
"5" refY=
"5" markerUnits=
"strokeWidth">
13 <rect width=
"10" height=
"10" fill=
"green" stroke=
"none"/>
15 <marker id=
"marker3" viewBox=
"0 0 10 10" markerWidth=
"3" refX=
"5" refY=
"5" markerUnits=
"strokeWidth">
16 <rect width=
"10" height=
"10" fill=
"green" stroke=
"none"/>
18 <path fill=
"none" stroke=
"none" stroke-width=
"8" marker-start=
"url(#marker1)" marker-mid=
"url(#marker2)" marker-end=
"url(#marker3)" d=
"M 130 120 L 180 120 L 180 170"/>