summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-transforms/css-transform-3d-rotateY-negative.html
blob: cff2346f9369ad58ee138768be56f847e5f61bd3 (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
36
37
<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8">
    <title>CSS Transforms Test: rotateY on div element</title>
    <link rel="author" title="Intel" href="http://www.intel.com">
    <link rel="help" href="http://www.w3.org/TR/css-transforms-2/#three-d-transform-functions">
    <link rel="match" href="reference/css-transform-3d-rotateX-ref.html">
    <meta name="assert" content="Test checks that rotate a 2:1 rectangle on Y-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.">
    <style>
      div {
        position: absolute;
      }
      div.redsquare {
        background-color: red;
        border: 20px solid black;
        height: 120px;
        left: 60px;
        top: 60px;
        width: 120px;
      }
      div.green {
        background-color: green;
        height: 120px;
        left: 20px;
        top: 80px;
        transform: rotateY(-60deg);
        width: 240px;
      }
    </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>