1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/layout/reftests/transform-3d/preserve3d-2d.html Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,30 @@ 1.4 +<html> 1.5 + <head> 1.6 + <style type="text/css"> 1.7 + #grandparent { 1.8 + width: 100px; 1.9 + height: 100px; 1.10 + -moz-transform-style: preserve-3d; 1.11 + -moz-transform: translatex(200%); 1.12 + } 1.13 + #parent { 1.14 + -moz-transform-style: preserve-3d; 1.15 + } 1.16 + 1.17 + #child { 1.18 + width: 100px; 1.19 + height: 100px; 1.20 + background-color: red; 1.21 + -moz-transform: translatex(-200px); 1.22 + } 1.23 + 1.24 + </style> 1.25 + </head> 1.26 + <body> 1.27 + <div id="grandparent"> 1.28 + <div id="parent"> 1.29 + <div id="child"></div> 1.30 + </div> 1.31 + </div> 1.32 + </body> 1.33 +</html>