layout/reftests/backgrounds/layers-layer-count-inheritance-2.xhtml

changeset 0
6474c204b198
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/layout/reftests/backgrounds/layers-layer-count-inheritance-2.xhtml	Wed Dec 31 06:09:35 2014 +0100
     1.3 @@ -0,0 +1,39 @@
     1.4 +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
     1.5 +<html xmlns="http://www.w3.org/1999/xhtml">
     1.6 +	<head>
     1.7 +		<title>css3-background: number of background layers determined by background-image</title>
     1.8 +		<link rel="author" title="L. David Baron" href="http://dbaron.org/" />
     1.9 +		<link rel="author" title="Mozilla Corporation" href="http://mozilla.com/" />
    1.10 +		<link rel="help" href="http://dev.w3.org/csswg/css3-background/#layering" />
    1.11 +		<meta name="flags" content="" />
    1.12 +		<style type="text/css"><![CDATA[
    1.13 +
    1.14 +		body > div {
    1.15 +			position: relative; height: 300px; width: 100px;
    1.16 +			background-repeat: no-repeat;
    1.17 +			background-position: 10px 10px;
    1.18 +			background-image: url(yellow-32x32.png), url(aqua-32x32.png), url(blue-32x32.png), url(fuchsia-32x32.png), url(red-32x32.png);
    1.19 +		}
    1.20 +
    1.21 +		body > div > div {
    1.22 +			position: absolute; height: 200px; width: 100px; top: 100px; left: 0;
    1.23 +			background: inherit;
    1.24 +			background-position: 5px 5px, 0px 0px, 20px 20px, 15px 15px;
    1.25 +		}
    1.26 +
    1.27 +		body > div > div > div {
    1.28 +			position: absolute; height: 100px; width: 100px; top: 100px; left: 0;
    1.29 +			background-image: inherit;
    1.30 +			background-repeat: inherit;
    1.31 +			background-position: 10px 10px, 5px 5px, 20px 20px;
    1.32 +		}
    1.33 +
    1.34 +
    1.35 +		]]></style>
    1.36 +	</head>
    1.37 +	<body>
    1.38 +
    1.39 +	<div><div><div></div></div></div>
    1.40 +
    1.41 +	</body>
    1.42 +</html>

mercurial