1
0
mirror of https://github.com/svg/svgo.git synced 2026-01-27 07:02:06 +03:00
Files
svgo/test/plugins/convertTransform.05.svg.txt
2024-02-05 21:47:31 +00:00

14 lines
382 B
Plaintext

Correctly optimize transform with same sign non-zero shears and.
===
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128">
<rect x="-45" y="-77" height="3" width="8" transform="matrix(0,-1,-1,0,0,0)" />
</svg>
@@@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128">
<rect x="-45" y="-77" height="3" width="8" transform="rotate(90)scale(-1 1)"/>
</svg>