summaryrefslogtreecommitdiff
path: root/tests/fixtures/styles/order.svg
blob: aa6938bdafc9ba57eed40873b8f57412e810e5d0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<?xml version="1.0" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" 
  "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg width="5cm" height="2.5cm" viewBox="0 0 1000 500"
     xmlns="http://www.w3.org/2000/svg" version="1.1">
  <style format="text/css">
    rect { fill: black; }
    .blue { fill: blue; }
    #green { fill: green; }
    rect#pink { fill: pink; }
    .blue#yellow { fill: yellow; }
    rect.blue#white { fill: white; }
    #brown { fill: brown; }
  </style>
  <rect class="blue" id="red" style="fill:red;" x="100" y="100" width="100" height="100"/>
  <rect class="blue" id="green" x="200" y="100" width="100" height="100"/>
  <rect class="blue" id="pink" x="300" y="100" width="100" height="100"/>
  <rect class="blue" id="yellow" x="400" y="100" width="100" height="100"/>
  <rect class="blue" id="white" x="500" y="100" width="100" height="100"/>
  <rect class="none" id="black" x="100" y="200" width="100" height="100"/>
  <rect class="blue" id="blue" x="200" y="200" width="100" height="100"/>
  <rect class="none" id="brown" x="300" y="200" width="100" height="100"/>
  <rect class="none" id="gray" style="fill:gray;" x="400" y="200" width="100" height="100"/>
</svg>