Hi, thank you for your great work on JSVG!
I ran into a problem with text mirroring when using transform-box: fill-box and transform-origin: center:
Minimal SVG:
<svg viewBox="0 0 400 200" xmlns="http://www.w3.org/2000/svg">
<text x="200" y="80" font-size="25" text-anchor="middle" style="transform-box: fill-box; transform-origin: center; transform: scale(1, -1);">
MIRROR ME
</text>
<text x="200" y="80" font-size="25" text-anchor="middle" >_____________</text>
</svg>
Expected (browser):

JSVG behavior:
scale(1, -1) is ignored unless I remove the comma: scale(1 -1)
- with scale(1 -1) it does mirror, but the text is shifted vertically (roughly by its own height):
Horizontal mirroring (scale(-1 1)) appears to work.
Hi, thank you for your great work on JSVG!
I ran into a problem with text mirroring when using
transform-box: fill-boxandtransform-origin: center:Minimal SVG:
Expected (browser):

JSVG behavior:
scale(1, -1)is ignored unless I remove the comma:scale(1 -1)Horizontal mirroring (
scale(-1 1)) appears to work.