summaryrefslogtreecommitdiffstats
path: root/layout/reftests/xul/object-fit-contain-svg-003.xhtml
blob: 431d6dcaaf2b5753d3bbfc64db5a321b6745a7f2 (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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
<?xml version="1.0"?>
<!--
     Any copyright is dedicated to the Public Domain.
     http://creativecommons.org/publicdomain/zero/1.0/
-->
<window xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
  <style xmlns="http://www.w3.org/1999/xhtml"><![CDATA[
      window { padding: 8px; }
      image {
        border: 1px dashed gray;
        padding: 1px;
        object-fit: contain;
      }

      .bigWide {
        width: 52px;
        height: 36px;
      }
      .bigTall {
        width: 36px;
        height: 52px;
      }
      .small {
        width: 12px;
        height: 12px;
      }

      br { clear: both; }

      .tr { object-position: top right }
      .bl { object-position: bottom left }
      .tl { object-position: top 25% left 25% }
      .br { object-position: bottom 1px right 2px }

      .tc { object-position: top 3px left 50% }
      .cr { object-position: top 50% right 25% }
  ]]></style>
  <hbox>
    <!-- big/wide: -->
    <image src="colors-16x8-noSize.svg" class="bigWide tr"/>
    <image src="colors-16x8-noSize.svg" class="bigWide bl"/>
    <image src="colors-16x8-noSize.svg" class="bigWide tl"/>
    <image src="colors-16x8-noSize.svg" class="bigWide br"/>
    <image src="colors-16x8-noSize.svg" class="bigWide tc"/>
    <image src="colors-16x8-noSize.svg" class="bigWide cr"/>
    <image src="colors-16x8-noSize.svg" class="bigWide"/>
  </hbox>
  <hbox>
    <!-- big/tall: -->
    <image src="colors-16x8-noSize.svg" class="bigTall tr"/>
    <image src="colors-16x8-noSize.svg" class="bigTall bl"/>
    <image src="colors-16x8-noSize.svg" class="bigTall tl"/>
    <image src="colors-16x8-noSize.svg" class="bigTall br"/>
    <image src="colors-16x8-noSize.svg" class="bigTall tc"/>
    <image src="colors-16x8-noSize.svg" class="bigTall cr"/>
    <image src="colors-16x8-noSize.svg" class="bigTall"/>
  </hbox>
  <hbox>
    <!-- small: -->
    <image src="colors-16x8-noSize.svg" class="small tr"/>
    <image src="colors-16x8-noSize.svg" class="small bl"/>
    <image src="colors-16x8-noSize.svg" class="small tl"/>
    <image src="colors-16x8-noSize.svg" class="small br"/>
    <image src="colors-16x8-noSize.svg" class="small tc"/>
    <image src="colors-16x8-noSize.svg" class="small cr"/>
    <image src="colors-16x8-noSize.svg" class="small"/>
  </hbox>
</window>