layout/xul/grid/examples/scrollingrows.xul

Wed, 31 Dec 2014 07:16:47 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 07:16:47 +0100
branch
TOR_BUG_9701
changeset 3
141e0f1194b1
permissions
-rw-r--r--

Revert simplistic fix pending revisit of Mozilla integration attempt.

     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 	   		  <button label="left"/>
    27 	   		  <button label="left"/>
    28 	   		  <button label="left"/>
    29    		   </row>
    31          <rows flex="1" style="border: 10px inset gray; overflow: auto; background-color: green">
    32            <row>
    33 	   	  	  <button label="cell1"/>
    34 	   	  	  <button label="cell1"/>
    35 	   	  	  <button label="cell1"/>
    36 	       </row>
    37            <row>
    38 	   	  	  <button label="cell2"/>
    39 	   	  	  <button label="cell2"/>
    40 	   	  	  <button label="cell2"/>
    41 	       </row>
    42            <row>
    43 	   	  	  <button label="cell3"/>
    44 	   	  	  <button label="cell3"/>
    45 	   	  	  <button label="cell3"/>
    46 	       </row>
    47            <row>
    48 	   	  	  <button label="cell4"/>
    49 	   	  	  <button label="cell4"/>
    50 	   	  	  <button label="cell4"/>
    51 	       </row>
    52            <row>
    53 	   	  	  <button label="cell5"/>
    54 	   	  	  <button label="cell5"/>
    55 	   	  	  <button label="cell5"/>
    56 	       </row>
    57            <row>
    58 	   	  	  <button label="cell6"/>
    59 	   	  	  <button label="cell6"/>
    60 	   	  	  <button label="cell6"/>
    61 	       </row>
    62            <row>
    63 	   	  	  <button label="cell7"/>
    64 	   	  	  <button label="cell7"/>
    65 	   	  	  <button label="cell7"/>
    66 	       </row>
    67 	   </rows>
    68   		   <row>
    69 	   		  <button label="right"/>
    70 	   		  <button label="right"/>
    71 	   		  <button label="right"/>
    72    		   </row>
    74 	 </rows>
    76 	</grid>
    77 	<spacer width="100"/>
    78   </hbox>
    79   <spacer height="100"/>
    80 </window>

mercurial