aboutsummaryrefslogtreecommitdiffstats
path: root/tests/wpt/css-tests/css-transforms-1_dev/html/reference/css-transform-scale-ref-002.htm
blob: 8491930c73174670a55a2d039daf731f606f9876 (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
<!DOCTYPE html>
<html><head>
    <title>Reference - CSS Transforms Test: transform property with scale function and move its origin</title>
    <link href="mailto:granimalcracker@gmail.com" rel="author" title="Chris Sanborn">
    <style type="text/css">
        .container {
            position: absolute;
        }
        .greenSquare {
            position: absolute;
            width: 200px;
            height: 200px;
            background-color:green;
        }
    </style>
</head>
<body>
<p>The test passes if the green square completely covers the red square.</p>
    <div class="container">
        <div class="greenSquare"></div>
    </div>


</body></html>