1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/layout/reftests/transform-3d/rotatex-perspective-3-ref.html Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,33 @@ 1.4 +<html> 1.5 +<head> 1.6 + <style type="text/css"> 1.7 + #container { 1.8 + position: relative; 1.9 + height: 300px; 1.10 + width: 300px; 1.11 + margin: 50px 100px; 1.12 + border: 2px solid blue; 1.13 + 1.14 + -moz-perspective: 500px; 1.15 + } 1.16 + 1.17 + #parent { 1.18 + margin: 10px; 1.19 + width: 280px; 1.20 + height: 280px; 1.21 + background-color: #844BCA; 1.22 + 1.23 + -moz-transform: rotateY(40deg); 1.24 + } 1.25 + 1.26 + </style> 1.27 +</head> 1.28 +<body> 1.29 + 1.30 + <div id="container"> 1.31 + <div id="parent"> 1.32 + </div> 1.33 + </div> 1.34 + 1.35 +</body> 1.36 +</html>