blob: 034f86563d2650cd1f4364ad1f2a82a10c0d7a07 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<svg id="svg-root" width="100%" height="100%"
viewBox="0 0 480 360" xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink">
<g id="test-body-content" font-family="DejaVu Sans" font-size="18">
<g fill="orange">
<circle id="a" FiLl="red" cx="140" cy="100" r="50"/>
</g>
<circle id="b" fill="red" style="FiLl: oRaNgE" cx="340" cy="100" r="50"/>
<circle id="c" fill="blue" cx="140" cy="220" r="50"/>
<style type="text/css">
#c {fill: red }
#c {FiLl: oRaNgE }
</style>
</g>
</svg>
|