summaryrefslogtreecommitdiffstats
path: root/layout/xul/grid/reftests/row-or-column-sizing-3.xul
blob: 1e8e55c294cb2db69709fafe48bfeaaa8bf3b628 (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
<?xml version="1.0"?>
<!DOCTYPE window>
<window xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
        title="XUL Grid Test">
  <grid>
    <columns>
      <column>
        <hbox />
        <hbox />
      </column>
      <column>
        <label value="Upper right" />
        <hbox />
      </column>
    </columns>
    <rows>
      <row>
        <hbox />
        <hbox />
      </row>
      <row>
        <textbox value="Lower left" />
        <hbox />
      </row>
    </rows>
  </grid>
</window>