chromium/third_party/blink/web_tests/external/wpt/css/filter-effects/reference/filters-drop-shadow-001-ref.html

<!DOCTYPE html>
<html>
<head>
    <title>CSS Reftest Reference</title>
    <link rel="author" title="Jun Ichikawa" href="mailto:[email protected]">
    <link rel="reviewer" title="Dirk Schulze" href="mailto:[email protected]">
    <style type="text/css">
        #box {
            position: absolute;
            top: 100px;
            left:0px;
            width: 200px;
            height: 200px;
            background-color: rgb(0, 255,0);
        }
        #box_shadow {
            position: absolute;
            top: 110px;
            left:20px;
            width: 200px;
            height: 200px;
            background-color: rgb(0, 255, 0);
        }
    </style>
</head>
<body>
    <p>You should see two green overlapping rectangles and no red.</p>
    <div id="box_shadow"></div>
    <div id="box"></div>

</body>
</html>