1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/layout/reftests/transform/830299-1-ref.html Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,34 @@ 1.4 +<!DOCTYPE html> 1.5 +<html lang="en-US"> 1.6 +<head> 1.7 + <title>Testcase, bug 830299</title> 1.8 + <meta charset=UTF-8> 1.9 + <style type="text/css"> 1.10 + 1.11 + html { margin: 1px; padding: 2px } 1.12 + body { margin: 4px; padding: 8px } 1.13 + 1.14 + #outer { 1.15 + position: absolute; 1.16 + top: 3px; left: 5px; 1.17 + width: 200px; height: 200px; 1.18 + background: yellow; 1.19 + } 1.20 + 1.21 + #inner { 1.22 + position: absolute; 1.23 + top: 7px; left: 9px; 1.24 + width: 100px; height: 100px; 1.25 + background: aqua; 1.26 + } 1.27 + 1.28 + </style> 1.29 +</head> 1.30 +<body> 1.31 + 1.32 +<div id="outer"> 1.33 + <div id="inner">inner</div> 1.34 +</div> 1.35 + 1.36 +</body> 1.37 +</html>