summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-transforms/css-skew-002-ref.html
blob: 49d75de6b6893f5ff6e3f43845956c0c15be940c (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
<!DOCTYPE html>
<html>
<!-- Submitted from TestTWF Paris -->
<head>
    <title>CSS Test Reference: skew function part 2</title>
    <link rel="author" title="Adrien Pachkoff" href="mailto:adrien@pachkoff.com">
    <style type="text/css">
        div {
            top:0px;
            left:0px;
            position:absolute;
            height: 150px;
            width: 150px;
            background-color:green;
            transform-origin: 0 0;
            transform: skew(25deg, 35deg);
        }
    </style>
</head>
<body>
    <p>The test passes if there is a green quadrilateral and no red.</p>
    <div> </div>
</body>
</html>