1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/layout/reftests/abs-pos/button-1-ref.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> 1.8 +.outer { 1.9 +position:relative; 1.10 +left:0px; 1.11 +top:0px; 1.12 +width: 1.13 +200px; 1.14 +height:100px; 1.15 +border:none; 1.16 +background:#00ff00; 1.17 +} 1.18 +.inner { 1.19 +position:absolute; 1.20 +left:0px; 1.21 +top:0px; 1.22 +width:50px; 1.23 +height:50px; 1.24 +background:#ff0000; 1.25 +} 1.26 +</style> 1.27 +</head> 1.28 +<body> 1.29 +<div class=outer><div class=inner></div></div> 1.30 +</body> 1.31 +</html>