Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / css3 / masking / mask-repeat-space-content.html
bloba56664355d6f96e0b22caeca9faae23ecffa2cf7
1 <!DOCTYPE html>
2 <html lang="en">
3 <head>
4 <style>
5 #back {
6 width: 1000px;
7 height: 600px;
8 background-color: green;
10 #front {
11 width: 800px;
12 height: 400px;
13 background-color: red;
14 border: 50px solid blue;
15 padding: 50px;
16 -webkit-mask-image: url(resources/circle-alpha.svg);
17 -webkit-mask-size: 121px 93px;
18 -webkit-mask-repeat: space space;
19 -webkit-mask-origin: content-box;
20 -webkit-mask-position: 100px 100px; /* Should be ignored because of repeat: space */
21 -webkit-mask-clip: content-box;
23 </style>
24 </head>
26 <body>
27 <div id="back">
28 <div id="front" />
29 </div>
30 <script>
31 document.body.offsetLeft;
32 </script>
33 </body>
34 </html>