1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/layout/reftests/abs-pos/button-2-ref.html Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,31 @@ 1.4 +<!doctype html> 1.5 +<html> 1.6 +<head> 1.7 +<style> 1.8 +div { 1.9 +position:relative; 1.10 +padding:0; 1.11 +background:green; 1.12 +width: 200px; 1.13 +height: 100px; 1.14 +border:none; 1.15 +text-align: left; 1.16 +font: 12px serif; 1.17 +} 1.18 +div span { 1.19 +display:block; 1.20 +position:absolute; 1.21 +right:0; 1.22 +top:0; 1.23 +width:10px; 1.24 +height:100%; 1.25 +background:red; 1.26 +} 1.27 +</style> 1.28 +</head> 1.29 +<body> 1.30 +<div> 1.31 +<span></span> 1.32 +</div> 1.33 +</body> 1.34 +</html>