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