summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-backgrounds/box-shadow-outset-spread-without-border-radius.html
blob: 5ebde5519ca445732fef5f3f28a60ecd102ed676 (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
33
34
35
36
37
38
39
<!DOCTYPE html>
<html>
<head>
    <title>CSS Backgrounds and Borders Test: box-shadow</title>
    <link rel="author" title="Zhang Xiaochong" href="mailto:joy.xczhang@gmail.com">
    <link rel="help" href="http://www.w3.org/TR/css3-background/#the-box-shadow">
    <link rel="match" href="reference/box-shadow-outset-spread-without-border-radius.html">
    <meta name="assert" content="outset spread box-shadow should show shadow.">
    <style type="text/css">
        .container {
            position: relative;
        }
        .container div {
            position: absolute;
            height: 150px;
            left: 0;
            top: 0;
            width: 150px;
        }
        .container .test {
            box-shadow: red 10px 10px 0 5px;
        }
        .container .ref {
            background-color: green;
            height: 160px;
            left: 5px;
            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="test"></div>
        <div class="ref"></div>
    </div>
</body>
</html>