1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/layout/reftests/bugs/634232-1-ref.html Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,30 @@ 1.4 +<!DOCTYPE HTML> 1.5 +<html> 1.6 +<head> 1.7 +<style> 1.8 + .wackeddiv { 1.9 + position: absolute; 1.10 + left: 20px; 1.11 + top: 20px; 1.12 + width: 50px; 1.13 + height: 50px; 1.14 + border: 2px solid highlight; 1.15 + background-color: transparent; 1.16 + } 1.17 + 1.18 + .posabssemitransparentblack { 1.19 + position:absolute; 1.20 + left: 0px; 1.21 + top: 50px; 1.22 + width: 100px; 1.23 + height: 100px; 1.24 + background: lime; 1.25 + opacity: 0.1; 1.26 + } 1.27 +</style> 1.28 +</head> 1.29 +<body> 1.30 + <div class="posabssemitransparentblack"></div> 1.31 + <div class="wackeddiv"></div> 1.32 +</body> 1.33 +</html>