1
0
mirror of https://github.com/svg/svgo.git synced 2025-07-31 07:44:22 +03:00
Files
svgo/test/plugins/collapseGroups.07.svg
2021-03-28 20:23:39 +03:00

26 lines
483 B
XML

Remove equal overriden groups attributes
===
<svg xmlns="http://www.w3.org/2000/svg">
<g attr1="val1">
<g attr2="val2">
<path attr2="val2" d="..."/>
</g>
<g attr2="val2">
<path attr2="val3" d="..."/>
</g>
</g>
</svg>
@@@
<svg xmlns="http://www.w3.org/2000/svg">
<g attr1="val1">
<path attr2="val2" d="..."/>
<g attr2="val2">
<path attr2="val3" d="..."/>
</g>
</g>
</svg>