~ubuntu-branches/ubuntu/precise/kompozer/precise

« back to all changes in this revision

Viewing changes to mozilla/layout/xul/base/src/grid/examples/flexgroupgrid.xul

  • Committer: Bazaar Package Importer
  • Author(s): Anthony Yarusso
  • Date: 2007-08-27 01:11:03 UTC
  • Revision ID: james.westby@ubuntu.com-20070827011103-2jgf4s6532gqu2ka
Tags: upstream-0.7.10
ImportĀ upstreamĀ versionĀ 0.7.10

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<?xml version="1.0"?> 
 
2
 
 
3
<?xml-stylesheet href="chrome://global/skin/" type="text/css"?> 
 
4
<?xml-stylesheet href="gridsample.css" type="text/css"?> 
 
5
 
 
6
<!DOCTYPE window> 
 
7
 
 
8
 
 
9
<window orient="vertical"
 
10
        xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"> 
 
11
 
 
12
   <hbox>
 
13
      <grid style="border: 2px inset gray;" flex="1">
 
14
         <columns>
 
15
            <columns style="border: 10px solid red" flex="1">
 
16
            <column flex="2"/>
 
17
            <column flex="1"/>
 
18
            </columns>
 
19
            <column flex="1"/>
 
20
         </columns>
 
21
 
 
22
         <rows style="font-size: 20pt">
 
23
            <rows>
 
24
               <row>
 
25
                  <text class="yellow" value="CellA"/>
 
26
                  <text class="yellow" value="CellAB"/>
 
27
                  <text class="yellow" value="CellABC"/>
 
28
               </row>
 
29
               <row>
 
30
                  <text class="yellow" value="CellA"/>
 
31
                  <text class="yellow" value="CellAB"/>
 
32
                  <text class="yellow" value="CellABC"/>
 
33
               </row>
 
34
            </rows>
 
35
            <row>
 
36
               <text class="yellow" value="CellA"/>
 
37
               <text class="yellow" value="CellAB"/>
 
38
               <text class="yellow" value="CellABC"/>
 
39
            </row>  
 
40
         </rows>
 
41
      </grid>
 
42
   </hbox>
 
43
</window>