layout/xul/grid/examples/nestedrows.xul

Wed, 31 Dec 2014 07:22:50 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 07:22:50 +0100
branch
TOR_BUG_3246
changeset 4
fc2d59ddac77
permissions
-rw-r--r--

Correct previous dual key logic pending first delivery installment.

     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/. -->
     7 <?xml-stylesheet href="chrome://global/skin/" type="text/css"?> 
     9 <!DOCTYPE window> 
    12 <window orient="vertical"
    13         xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"> 
    15   <hbox flex="1">
    16     <grid style="border: 2px solid red" flex="1">
    18      <columns>
    19         <column flex="1"/>
    20         <column flex="1"/>
    21         <column flex="1"/>
    22      </columns>
    24        <rows>
    25          <row>
    26 	   		  <text  value="out1"/>
    27 	   		  <text  value="out2"/>
    28 	   		  <text  value="out3"/>
    29          </row>
    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>
    44 	 </rows>
    46 	</grid>
    47   </hbox>
    48 </window>

mercurial