chromium/third_party/blink/web_tests/external/wpt/css/css-transforms/reference/perspective-origin-reftest.html

<!DOCTYPE html>
<html>
<head>
    <title>Reference File</title>
    <link rel="author" title="Andres Ugarte" href="mailto:[email protected]">
    <style type="text/css">
        .container {
            position: absolute;
            width: 150px;
            height: 150px;
            top: 100px;
            left: 100px;
        }
        .greenSquare {
            position: absolute;
            top: 0px;
            left: 0px;
            width: 150px;
            height: 150px;
            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>