1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/layout/reftests/transform-3d/sorting-1a.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 + #stage { 1.8 + -moz-perspective: 1000px; 1.9 + } 1.10 + 1.11 + #parent { 1.12 + -moz-transform-style: preserve-3d; 1.13 + } 1.14 + 1.15 + #big { 1.16 + width: 1000px; 1.17 + height: 1000px; 1.18 + background-color: #995C7F; 1.19 + -moz-transform: rotatey(45deg); 1.20 + } 1.21 + 1.22 + #small { 1.23 + width: 100px; 1.24 + height: 100px; 1.25 + background-color: #835A99; 1.26 + -moz-transform: translate3d(600px, 200px, 0px); 1.27 + } 1.28 + </style> 1.29 + </head> 1.30 + <body> 1.31 + <div id="stage"> 1.32 + <div id="parent"> 1.33 + <div id="small"></div> 1.34 + <div id="big"></div> 1.35 + </div> 1.36 + </div> 1.37 + </body> 1.38 +</html>