svgObjectModelGenerator
svgObjectModelGenerator copied to clipboard
Group should take the class (or attributes) if its children share it.
<g>
<circle class="cls-1"/>
<rect class="cls-1"/>
</g>
Should be
<g class="cls-1">
<circle/>
<rect/>
</g>