chromium/third_party/blink/web_tests/external/wpt/css/css-transforms/reference/transform-translatex-006-ref.html

<!DOCTYPE html>
<html>
<head>
    <title>CSS Tranforms Reference File</title>
    <link rel="author" title="Serena Wales" href="mailto:[email protected]">
    <style type="text/css">
        .container {
            position: absolute;
        }
        .greenSquare {
            position: absolute;
            width: 100px;
            height: 100px;
            /* Position the div so its identical to the div in the test file */
            /* Add fill color to match the test file */
            top: 0px;
            left: 50px;
            background: green;
        }
    </style>
</head>
<body>
    <p>The test passes if there is a green square and no red.</p>
    <div class="container">
        <div class="greenSquare"></div>
    </div>
</body>
</html>