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

22 lines
377 B
XML

Remove inheritable overriden groups attributes
===
<svg xmlns="http://www.w3.org/2000/svg">
<g attr1="val1">
<g fill="red">
<path fill="green" d="..."/>
</g>
<path d="..."/>
</g>
</svg>
@@@
<svg xmlns="http://www.w3.org/2000/svg">
<g attr1="val1">
<path fill="green" d="..."/>
<path d="..."/>
</g>
</svg>