scour/unittests/group-no-creation-tspan.svg
Eduard Braun 5844076258 Only attempt to group elements that the content model allows to be children of a <g> when --create-groups is specified. (#98)
(before it could happen that e.g. `tspan` elements were grouped, which is invalid; fixes issues #96 and #97)
2016-08-29 02:33:13 +02:00

8 lines
350 B
XML

<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg height="100" width="100" xmlns="http://www.w3.org/2000/svg" >
<text>
<tspan x="10" y="30" style="font-family:sans-serif">text1</tspan>
<tspan x="10" y="50" style="font-family:sans-serif">text2</tspan>
<tspan x="10" y="70" style="font-family:sans-serif">text3</tspan>
</text>
</svg>