summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/filter-effects/reference/filters-drop-shadow-001-ref.html
blob: 3776a006095dd3ec5b9ea826e3260c91469711b6 (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
25
26
27
28
29
30
31
32
<!DOCTYPE html>
<html>
<head>
    <title>CSS Reftest Reference</title>
    <link rel="author" title="Jun Ichikawa" href="mailto:jun1ka0@gmail.com">
    <link rel="reviewer" title="Dirk Schulze" href="mailto:dschulze@adobe.com">
    <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>