1
0
mirror of https://github.com/svg/svgo.git synced 2026-01-25 18:41:39 +03:00
Files
svgo/test/plugins/inlineStyles.22.svg.txt

27 lines
738 B
Plaintext

Selectors matching two classes should remove both classes from the matched
element, and further selectors of those classes should still apply.
===
<svg xmlns="http://www.w3.org/2000/svg" width="1570.062" height="2730" viewBox="0 0 415.412 722.312">
<style>
.segment.minor {
stroke-width: 1.5;
}
.minor {
stroke: #15c6aa;
}
</style>
<g transform="translate(200.662 362.87)">
<path d="M163.502-303.979h3.762" class="segment minor"/>
</g>
</svg>
@@@
<svg xmlns="http://www.w3.org/2000/svg" width="1570.062" height="2730" viewBox="0 0 415.412 722.312">
<g transform="translate(200.662 362.87)">
<path d="M163.502-303.979h3.762" style="stroke:#15c6aa;stroke-width:1.5"/>
</g>
</svg>