https://github.com/mozilla/gecko-dev
Raw File
Tip revision: d8814785dfeaeb0abe29793688457bef92c288e8 authored by ffxbld on 05 January 2016, 20:32:20 UTC
Added FIREFOX_43_0_4_RELEASE FIREFOX_43_0_4_BUILD2 tag(s) for changeset f60cbcf3c729. DONTBUILD CLOSED TREE a=release
Tip revision: d881478
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