1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/layout/reftests/z-index/z-index-1-ref.html Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,59 @@ 1.4 +<!DOCTYPE HTML> 1.5 +<html> 1.6 +<head> 1.7 +<style> 1.8 +.container { 1.9 + position:absolute; 1.10 + width:400px; 1.11 + height:100px; 1.12 + background-color:yellow; 1.13 + z-index:0; 1.14 +} 1.15 +.container > div { 1.16 + height:100px; 1.17 + margin-bottom:-100px; 1.18 +} 1.19 +.negative { 1.20 + width:380px; 1.21 + background-color:blue; 1.22 +} 1.23 +.block { 1.24 + width:360px; 1.25 + background-color:purple; 1.26 +} 1.27 +.float { 1.28 + width:340px; 1.29 + background-color:green; 1.30 +} 1.31 +.inline { 1.32 + width:320px; 1.33 + background-color:pink; 1.34 +} 1.35 +#outline { 1.36 + height:60px; 1.37 + width:260px; 1.38 + border:20px solid gray; 1.39 +} 1.40 +.positioned { 1.41 + width:280px; 1.42 + background-color:magenta; 1.43 +} 1.44 +.positive { 1.45 + width:260px; 1.46 + background-color:orange; 1.47 +} 1.48 +</style> 1.49 +</head> 1.50 +<body> 1.51 +<div class="container"> 1.52 + <div class="negative"></div> 1.53 + <div class="block"></div> 1.54 + <div class="float"></div> 1.55 + <div class="inline"></div> 1.56 + <div id="outline"></div> 1.57 + 1.58 + <div class="positioned"></div> 1.59 + <div class="positive"></div> 1.60 +</div> 1.61 +</body> 1.62 +</html>