mirror of
https://github.com/svg/svgo.git
synced 2026-01-25 18:41:39 +03:00
21 lines
373 B
Plaintext
21 lines
373 B
Plaintext
Empty selectors should just be dropped.
|
|
|
|
===
|
|
|
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 45 35">
|
|
<style>
|
|
.a {}
|
|
</style>
|
|
<g class="a">
|
|
<circle class="b" cx="42.97" cy="24.92" r="1.14"/>
|
|
</g>
|
|
</svg>
|
|
|
|
@@@
|
|
|
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 45 35">
|
|
<g>
|
|
<circle class="b" cx="42.97" cy="24.92" r="1.14"/>
|
|
</g>
|
|
</svg>
|