1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/layout/reftests/transform/compound-1a.html Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,27 @@ 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 class="test" style="-moz-transform: translate(100px) scale(2) rotate(90deg) skew(15deg);"> 1.27 + </div> 1.28 + </div> 1.29 +</body> 1.30 +</html>