summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/css3/masking/mask-repeat-round-padding-expected.html
blob: bc7f5f29b3510545868f8393cde2dabdcb60250c (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
<!DOCTYPE html>
<html lang="en">
    <head>
        <style>
            #back {
                width: 1000px;
                height: 600px;
                background-color: green;
            }
            #front {
                width: 800px;
                height: 400px;
                background-color: red;
                border: 50px solid blue;
                padding: 50px;
                -webkit-mask-image: url(resources/circle.png);
                -webkit-mask-size: 90px 83px;
                -webkit-mask-repeat: repeat;
                -webkit-mask-origin: padding-box;
                -webkit-mask-clip: padding-box;
            }
        </style>
    </head>

    <body>
        <div id="back">
            <div id="front" />
        </div>
    </body>
</html>