aboutsummaryrefslogtreecommitdiffstats
path: root/tests/wpt/css-tests/css-transforms-1_dev/html/css-transform-3d-rotate3d-X-negative.htm
blob: 8c04f912a99b97398432cc3adc0f01fc015200de (plain) (blame)
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
36
37
38
<!DOCTYPE html>
<html><head>
    <meta charset="utf-8">
    <title>CSS Transforms Test: rotate3d on div element</title>
    <link href="http://www.intel.com" rel="author" title="Intel">
    <link href="http://www.w3.org/TR/css-transforms-1/#three-d-transform-functions" rel="help">
    <meta content="" name="flags">
    <link href="reference/css-transform-3d-rotateX-ref.htm" rel="match">
    <meta content="Test checks that rotate the 2:1 rectangle on X-axis for 60 degree we will get a square and completely cover the red square, and here we use border due to the rectangle not be rotated would cover the red square." name="assert">
    <style>
      div {
        left: 20px;
        position: absolute;
        top: 35px;       
      }
      div.redsquare {
        background-color: red;
        border: 5px solid black;
        height: 120px;
        left: 15px;
        top: 90px;       
        width: 120px;      
      }
      div.green {     
        background-color: green;
        height: 240px;
        transform: rotate3d(1,0,0,-60deg);
        width: 120px;
      }
    </style>
  </head>
  <body>
    <p>Test passes if there is a green square with black border around, and no any red.</p>
    <div class="redsquare"></div>
    <div class="green"></div>
  

</body></html>