layout/reftests/backgrounds/layers-stacking-order.xhtml

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 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
     2 <html xmlns="http://www.w3.org/1999/xhtml">
     3 	<head>
     4 		<title>css3-background: stacking order of layers</title>
     5 		<link rel="author" title="L. David Baron" href="http://dbaron.org/" />
     6 		<link rel="author" title="Mozilla Corporation" href="http://mozilla.com/" />
     7 		<link rel="help" href="http://dev.w3.org/csswg/css3-background/#layering" />
     8 		<meta name="flags" content="" />
     9 		<style type="text/css"><![CDATA[
    11 		div#test {
    12 			position: relative; height: 100px; width: 100px;
    13 			background: url(blue-32x32.png) 5px 5px no-repeat,
    14 			            url(yellow-32x32.png) 15px 15px no-repeat,
    15 			            url(fuchsia-32x32.png) 10px 10px no-repeat,
    16 			            url(aqua-32x32.png) 20px 20px no-repeat;
    17 		}
    20 		]]></style>
    21 	</head>
    22 	<body>
    24 	<div id="test"></div>
    26 	</body>
    27 </html>

mercurial