mirror of
https://github.com/svg/svgo.git
synced 2025-07-29 20:21:14 +03:00
Ref https://github.com/svg/svgo/issues/1217 https://github.com/svg/svgo/issues/958 https://github.com/svg/svgo/issues/872
36 lines
1.1 KiB
XML
36 lines
1.1 KiB
XML
Merged paths loose their ends and markers are rendered incorrectly
|
|
|
|
===
|
|
|
|
<svg width="100" height="100">
|
|
<defs>
|
|
<style>
|
|
.a {marker-end: url(#arrowhead_end);}
|
|
</style>
|
|
<marker id="arrowhead_end" markerWidth="10" markerHeight="10" refX="6" refY="3">
|
|
<path d="M 0,0 l 6,3 l -6,3" stroke="black" />
|
|
</marker>
|
|
</defs>
|
|
<path d="M 10,10 h50" stroke="black" marker-end="url(#arrowhead_end)" />
|
|
<path d="M 10,50 h50" stroke="black" marker-end="url(#arrowhead_end)" />
|
|
<path d="M 10,60 h60" stroke="black" class="a" />
|
|
<path d="M 10,70 h60" stroke="black" class="a"/>
|
|
</svg>
|
|
|
|
@@@
|
|
|
|
<svg width="100" height="100">
|
|
<defs>
|
|
<style>
|
|
.a {marker-end: url(#arrowhead_end);}
|
|
</style>
|
|
<marker id="arrowhead_end" markerWidth="10" markerHeight="10" refX="6" refY="3">
|
|
<path d="M 0,0 l 6,3 l -6,3" stroke="black"/>
|
|
</marker>
|
|
</defs>
|
|
<path d="M 10,10 h50" stroke="black" marker-end="url(#arrowhead_end)"/>
|
|
<path d="M 10,50 h50" stroke="black" marker-end="url(#arrowhead_end)"/>
|
|
<path d="M 10,60 h60" stroke="black" class="a"/>
|
|
<path d="M 10,70 h60" stroke="black" class="a"/>
|
|
</svg>
|