summaryrefslogtreecommitdiffstats
path: root/layout/reftests/transform-3d/sorting-1a.html
blob: 1aa878d2c1ba939732e1e51095c643e3835b3446 (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
30
31
32
33
34
35
<html>
    <head>
        <style type="text/css">
        #stage {
          perspective: 1000px;
        }

        #parent {
          transform-style: preserve-3d;
        }

        #big {
          width: 1000px;
          height: 1000px;
          background-color: #995C7F;
          transform: rotatey(45deg);
        }

        #small {
          width: 100px;
          height: 100px;
          background-color: #835A99;
          transform: translate3d(600px, 200px, 0px);
        }
        </style>
    </head>
    <body>
        <div id="stage">
            <div id="parent">
                <div id="small"></div>
                <div id="big"></div>
            </div>
        </div>
    </body>
</html>