1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/layout/reftests/transform/compound-1-ref.html Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,35 @@ 1.4 +<html> 1.5 +<head> 1.6 + <style type="text/css"> 1.7 + div.test 1.8 + { 1.9 + background-color: gold; 1.10 + width:200px; 1.11 + height:100px; 1.12 + border: 1px solid black; 1.13 + } 1.14 + div 1.15 + { 1.16 + -moz-transform-origin: top left; 1.17 + } 1.18 + body 1.19 + { 1.20 + overflow:hidden; 1.21 + } 1.22 + </style> 1.23 +</head> 1.24 +<body> 1.25 + <div style="position:relative; left:400px; top:200px;"> 1.26 + <div style="-moz-transform: translate(100px);"> 1.27 + <div style="-moz-transform: scale(2);"> 1.28 + <div style="-moz-transform: rotate(90deg);"> 1.29 + <div style="-moz-transform: skew(15deg);"> 1.30 + <div class="test"> 1.31 + </div> 1.32 + </div> 1.33 + </div> 1.34 + </div> 1.35 + </div> 1.36 + </div> 1.37 +</body> 1.38 +</html>