Re: [svgwg] tspan and text shaping (#634)

@msand I'm not sure how to define it.

```xml
<svg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg" font-family="Verdana" font-size="48">

    <path id="crosshair" d="M 20 100 L 180 100 M 100 20 L 100 180" stroke="gray" stroke-width="0.5"/>

    <!-- \x66\x69 -->
    <text id="text1" x="100" y="60" text-anchor="middle">
        fi
    </text>

    <!-- \x66\xE2\x80\x8C\x69 -->
    <text id="text2" x="100" y="100" text-anchor="middle">
        f‌i
    </text>

    <!-- \xEF\xAC\x81 -->
    <text id="text3" x="100" y="140" text-anchor="middle">
        fi
    </text>

    <!-- \x66\xE2\x80\x8C\x69 -->
    <text id="text4" x="100" y="180" text-anchor="middle">
        f<tspan font-weight="bold">i</tspan>
    </text>

    <rect id="frame" x="1" y="1" width="198" height="198" fill="none" stroke="black"/>
</svg>
```

![e-tspan-024](https://user-images.githubusercontent.com/725494/51800977-72c0cc80-2240-11e9-859a-4a05d61ccfb6.png)

Not sure what to expect, but Inkscape and QtSvg definitely have some problems.

-- 
GitHub Notification of comment by RazrFalcon
Please view or discuss this issue at https://github.com/w3c/svgwg/issues/634#issuecomment-457914040 using your GitHub account

Received on Sunday, 27 January 2019 12:34:16 UTC