Doomed SVG wrapping text hack
HTML
<div style="width: 100px; heigth: 50px;">
<svg width="100%" height="100%" preserveAspectRatio="none viewBox="0 0 100 100"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<defs>
<!-- define lines for text lies on -->
<path id="path1" d="M0,10 H100 M0,20 H100 M0,30 H100 M0,40 H100"></path>
</defs>
<use xlink:href="#path1" x="0" y="35" stroke="blue" stroke-width="1" />
<text transform="translate(0,35)" fill="red" font-size="20">
<textPath xlink:href="#path1">This is a long long long text ......</textPath>
</text>
</svg>
</div>