summaryrefslogtreecommitdiffstats
path: root/layout/reftests/transform-3d/sorting-3a.html
blob: 00c62b5ce654edbf6db569929f3d6e2856c79086 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<html>
    <head>
        <style type="text/css">
        #parent {
            -moz-transform-style: preserve-3d;
            -moz-transform: rotateX(180deg);
            width: 100px;
            height: 100px;
            background-color: #00FF00;
        }

        #child {
          width: 100px;
          height: 100px;
          background-color: red;
          -moz-transform: translatez(10px);
        }
        </style>
    </head>
    <body>
        <div id="parent">
            <div id="child"></div>
        </div>
    </body>
</html>