1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/dom/plugins/test/reftest/div-alpha-opacity.html Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,28 @@ 1.4 +<!doctype html> 1.5 +<html> 1.6 +<head> 1.7 +<style type="text/css"> 1.8 +#one { 1.9 + position:absolute; 1.10 + left:0px; top:0px; 1.11 + width:400px; height:400px; 1.12 + border:2px solid blue; 1.13 + background-color: rgb(160,160,160); 1.14 + opacity:0.8; 1.15 + z-index:1; 1.16 +} 1.17 +#two { 1.18 + position:absolute; 1.19 + top:100px; left:100px; 1.20 + width:200px; height:200px; 1.21 + z-index:0; 1.22 + background-color: rgb(255,0,0); 1.23 +} 1.24 +</style> 1.25 +</head> 1.26 +<body> 1.27 +<div id="two"></div> 1.28 +<div id="one"></div> 1.29 +</body> 1.30 +</html> 1.31 +