https://github.com/mozilla/gecko-dev
Raw File
Tip revision: 78d17b06b04f2b76bcb6e3e2a553f4ad0202bc8d authored by Nika Layzell on 19 May 2022, 21:51:15 UTC
Bug 1770137 - Part 2, r=Gijs, a=dsmith
Tip revision: 78d17b0
preserve3d-2c.html
<html>
    <head>
        <style type="text/css">
        #grandparent {
          -moz-transform-style: preserve-3d;
        }
        #parent {
          -moz-transform-style: preserve-3d;
        }

        #child {
          width: 100px;
          height: 100px;
          background-color: red;
          -moz-transform: translatex(-200px);
          margin-left: 200px
        }

        </style>
    </head>
    <body>
        <div id="grandparent">
            <div id="parent">
                <div id="child"></div>
            </div>
        </div>
    </body>
</html>
back to top