summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-backgrounds/background-rounded-image-clip-001.html
blob: e6222190c192c0fa3db307e2c0cecf6d9a99a13c (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
<!DOCTYPE html>
<meta charset="utf-8">
<title>Background Clip Follows Rounded Corner</title>
<meta name="fuzzy" content="maxDifference=0-2; totalPixels=0-22547">
<link rel="match" href="reference/background-rounded-image-clip.html">
<link rel="help" href="https://drafts.csswg.org/css-backgrounds-3/#corner-clipping">
<style>
    html {
        background-color: green;
    }
    #a {
        top: 20px;
        left: 20px;
        position: absolute;
        width: 20px;
        height: 20px;
        background-color: black;
    }

    #b {
        position: absolute;
        width: 300px;
        height: 200px;
        background-image: linear-gradient(green, green);
        background-clip: content-box;
        border-top-left-radius: 90px;
        border-width: 10px;
        border-style: solid;
        border-color: transparent;
    }
</style>
<div id="a"></div>
<div id="b"></div>