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

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

mercurial