layout/xul/grid/examples/nestedrows.xul

branch
TOR_BUG_9701
changeset 11
deefc01c0e14
equal deleted inserted replaced
-1:000000000000 0:6897afc73163
1 <?xml version="1.0"?>
2 <!-- This Source Code Form is subject to the terms of the Mozilla Public
3 - License, v. 2.0. If a copy of the MPL was not distributed with this
4 - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
5
6
7 <?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
8
9 <!DOCTYPE window>
10
11
12 <window orient="vertical"
13 xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
14
15 <hbox flex="1">
16 <grid style="border: 2px solid red" flex="1">
17
18 <columns>
19 <column flex="1"/>
20 <column flex="1"/>
21 <column flex="1"/>
22 </columns>
23
24 <rows>
25 <row>
26 <text value="out1"/>
27 <text value="out2"/>
28 <text value="out3"/>
29 </row>
30
31 <rows flex="1" style="border: 10px inset yellow; font-size: 20pt">
32 <row>
33 <text value="in1"/>
34 <text value="in2"/>
35 <text value="in3"/>
36 </row>
37 <row>
38 <text value="in4"/>
39 <text value="in5"/>
40 <text value="in5"/>
41 </row>
42 </rows>
43
44 </rows>
45
46 </grid>
47 </hbox>
48 </window>

mercurial