summaryrefslogtreecommitdiffstats
path: root/layout/reftests/svg/as-image/img-and-image-1-ref.svg
blob: 07e977f0e56ee3ec7d82bfd033a6715b670af081 (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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<svg xmlns="http://www.w3.org/2000/svg"
     xmlns:xlink="http://www.w3.org/1999/xlink">
  <defs>
    <!-- The rect that's used everywhere -->
    <rect id="rect" x="2" y="2" width="96" height="16"
          style="stroke-width: 4; fill:lime; stroke: teal"/>

    <!-- Symbols with the testcases' preserveAspectRatio values applied -->
    <symbol id="pAR_xMinYMin_slice"
            viewBox="0 0 100 20" preserveAspectRatio="xMinYMin slice">
      <use xlink:href="#rect"/>
    </symbol>
    <symbol id="pAR_none"
            viewBox="0 0 100 20" preserveAspectRatio="none">
      <use xlink:href="#rect"/>
    </symbol>
    <symbol id="pAR_xMaxYMax_meet"
            viewBox="0 0 100 20" preserveAspectRatio="xMaxYMax meet">
      <use xlink:href="#rect"/>
    </symbol>
    <symbol id="pAR_xMaxYMax_slice"
            viewBox="0 0 100 20" preserveAspectRatio="xMaxYMax slice">
      <!-- this one corresponds to 'defer' in the image used in the testcase,
           as well as to the HTML <img> elements (which don't bring their own
           preserveAspectRatio value) -->
      <use xlink:href="#rect"/>
    </symbol>

    <!-- Single column from the testcase -->
    <g id="column">
      <use y="0"   xlink:href="#pAR_xMaxYMax_slice" width="60"  height="20"/>
      <use y="50"  xlink:href="#pAR_xMinYMin_slice" width="100" height="40"/>
      <use y="100" xlink:href="#pAR_none"           width="100" height="40"/>
      <use y="150" xlink:href="#pAR_xMaxYMax_meet"  width="80"  height="40"/>
      <use y="200" xlink:href="#pAR_xMaxYMax_slice" width="80"  height="40"/>
      <use y="250" xlink:href="#pAR_xMaxYMax_slice" width="30"  height="50"/>
    </g>
  </defs>

  <!-- Rendered output: 2 instances of our column (defined above) -->
  <use xlink:href="#column"/>
  <use x="150" xlink:href="#column"/>
</svg>