summaryrefslogtreecommitdiffstats
path: root/layout/xul/grid/reftests/z-order-2.xul
blob: b2c270d6b7b57a22998ff59842aac44189275aea (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
<?xml version="1.0"?>
<!DOCTYPE window>
<window xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
        title="XUL Grid Test">
  <style xmlns="http://www.w3.org/1999/xhtml"><![CDATA[
    window { background: black; }
    hbox { height: 100px; width: 100px; }
  ]]></style>
  <hbox>
    <grid>
      <rows>
        <row style="background: rgb(0, 255, 0)">
          <hbox />
          <hbox />
          <hbox />
        </row>
        <row>
          <hbox style="background: rgb(0, 255, 0)" />
          <hbox style="background: rgb(0, 255, 0)" />
          <hbox style="background: rgb(0, 255, 0)" />
        </row>
        <row>
          <hbox />
          <hbox />
          <hbox />
        </row>
      </rows>
      <columns>
        <column style="background: rgba(0, 0, 255, 0.6)">
          <hbox />
          <hbox />
          <hbox />
        </column>
        <column>
          <hbox style="background: rgba(0, 0, 255, 0.6)" />
          <hbox style="background: rgba(0, 0, 255, 0.6)" />
          <hbox style="background: rgba(0, 0, 255, 0.6)" />
        </column>
        <column>
          <hbox />
          <hbox />
          <hbox />
        </column>
      </columns>
    </grid>
  </hbox>
</window>