summaryrefslogtreecommitdiffstats
path: root/layout/reftests/transform-3d/sorting-2a.html
blob: 6c5ba56f98eaecd770880344cc97717847510248 (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
26
27
28
29
<html>
    <head>
        <style type="text/css">
        #parent {
            transform-style: preserve-3d;
        }

        #one {
          width: 100px;
          height: 100px;
          background-color: #00FF00;
          transform: translatez(10px);
        }

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