layout/xul/grid/examples/rowspan.xul

Tue, 06 Jan 2015 21:39:09 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Tue, 06 Jan 2015 21:39:09 +0100
branch
TOR_BUG_9701
changeset 8
97036ab72558
permissions
-rw-r--r--

Conditionally force memory storage according to privacy.thirdparty.isolate;
This solves Tor bug #9701, complying with disk avoidance documented in
https://www.torproject.org/projects/torbrowser/design/#disk-avoidance.

     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" style="border: 2px solid green"
    13         xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"> 
    15   <hbox>
    16     <grid style="border: 2px solid red;">
    17 	   <columns>
    18          <column/>
    19          <column/>
    20 	   </columns>
    22 	   <rows>
    23 	     <row style="font-size: 40px">
    24 			 <text value="foo1"/>
    25 			 <text value="foo2"/>
    26 		 </row>
    27 		<box width="50" style="border:5px inset grey">
    28 			<text value="hello there. This spans"/>
    29 		</box>
    30 	     <row style="font-size: 40px" >
    31 			 <text value="foo1"/>
    32 			 <text value="foo2"/>
    33 		 </row>
    35 	   </rows>
    36 	</grid>
    37 	<spacer flex="1" style="background-color: white"/>
    38   </hbox>
    41 </window>

mercurial