layout/reftests/transform-3d/sorting-3a.html

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

mercurial