summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-backgrounds/reference/box-shadow-outset-spread-without-border-radius.html
blob: f62399abce0f0c2f745ef63849bc54fcf952cce9 (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
<!DOCTYPE html>
<html>
<head>
    <title>Reference File</title>
    <link rel="author" title="Zhang Xiaochong" href="mailto:joy.xczhang@gmail.com">
    <style type="text/css">
        .container {
            position: relative;
        }
        .ref {
            background-color: green;
            height: 160px;
            left: 5px;
            position: absolute;
            top: 5px;
            width: 160px;
        }
    </style>
</head>
<body>
    <p>The test passes if there is a filled green square and no red.</p>
    <div class="container">
        <div class="ref"></div>
    </div>
</body>
</html>