1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/layout/reftests/transform-3d/perspective-origin-2a.html Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,31 @@ 1.4 +<html> 1.5 +</head> 1.6 +<style type="text/css"> 1.7 + .stage{ 1.8 + -moz-perspective: 100px; 1.9 + -moz-perspective-origin: 25% 25%; 1.10 + height:100px; 1.11 + width:100px; 1.12 + margin:5px; 1.13 + padding:5px; 1.14 + border:5px solid gray; 1.15 + } 1.16 + 1.17 + .box { 1.18 + -moz-transform:rotateX(45deg); 1.19 + height:70px; 1.20 + width:70px; 1.21 + background:green; 1.22 + margin:5px; 1.23 + padding:5px; 1.24 + border:5px solid black; 1.25 + } 1.26 + 1.27 + </style> 1.28 +</head> 1.29 +<body> 1.30 + <div class="stage"> 1.31 + <div class="box"></div> 1.32 + </div> 1.33 +</body> 1.34 +</html>