layout/reftests/transform-3d/sorting-2b.html

changeset 0
6474c204b198
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/layout/reftests/transform-3d/sorting-2b.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 +        #parent {
     1.8 +            -moz-transform-style: preserve-3d;
     1.9 +            -moz-transform: rotatex(180deg);
    1.10 +        }
    1.11 +
    1.12 +        #one {
    1.13 +          width: 100px;
    1.14 +          height: 100px;
    1.15 +          background-color: red;
    1.16 +          -moz-transform: translatez(10px) translatey(50px);
    1.17 +        }
    1.18 +
    1.19 +        #two {
    1.20 +          width: 100px;
    1.21 +          height: 100px;
    1.22 +          background-color: #00FF00;
    1.23 +          -moz-transform: translatez(10px);
    1.24 +        }
    1.25 +        </style>
    1.26 +    </head>
    1.27 +    <body>
    1.28 +        <div id="parent">
    1.29 +                <div id="one"></div>
    1.30 +                <div id="two"></div>
    1.31 +        </div>
    1.32 +    </body>
    1.33 +</html>

mercurial