layout/reftests/css-blending/mix-blend-mode-nested-976533-ref.html

changeset 0
6474c204b198
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/layout/reftests/css-blending/mix-blend-mode-nested-976533-ref.html	Wed Dec 31 06:09:35 2014 +0100
     1.3 @@ -0,0 +1,47 @@
     1.4 +<!DOCTYPE HTML>
     1.5 +<head>
     1.6 +	<style>
     1.7 +		.parent {
     1.8 +		  width: 200px;
     1.9 +		  height: 200px;
    1.10 +		  position: absolute;
    1.11 +		  z-index: 1;
    1.12 +			background-color: #00ff00;
    1.13 +		}
    1.14 +
    1.15 +		.intermediate {
    1.16 +			width: 100px;
    1.17 +		  height: 100px;
    1.18 +		  margin-left:50px;
    1.19 +		  background-color: #ffffff;
    1.20 +		}
    1.21 +
    1.22 +		.child {
    1.23 +		  width: 100px;
    1.24 +		  height: 100px;
    1.25 +		  margin-left:50px;
    1.26 +		  background-color: #00ffff;
    1.27 +		}
    1.28 +
    1.29 +		.grandchild {
    1.30 +			width: 50px;
    1.31 +			height: 100px;
    1.32 +			margin-left: 50px;
    1.33 +			background-color: #0000ff;
    1.34 +		}
    1.35 +
    1.36 +		body {
    1.37 +			margin:0px;
    1.38 +		}
    1.39 +
    1.40 +	</style>
    1.41 +</head>
    1.42 +<body>
    1.43 +	<div class="parent">
    1.44 +		<div class="intermediate">
    1.45 +	    <div class="child">
    1.46 +	    	<div class="grandchild"></div>
    1.47 +	    </div>
    1.48 +    </div>
    1.49 +	</div>
    1.50 +</body>

mercurial