Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / css3 / calc / simple-composited-mask-expected.html
blobc0909452e05d4113818f6b31f6dac88ecf529ca7
1 <!DOCTYPE html>
2 <style>
3 #container {
4 height: 760px;
5 width: 260px;
6 border: solid black;
7 display: inline-block;
9 .box {
10 position: relative;
11 width: 200px;
12 height: 200px;
13 margin: 30px;
14 border: 10px solid black;
15 background-color: rgba(100, 100, 255, 0.8);
16 -webkit-box-sizing: border-box;
17 -webkit-box-shadow: black 0 4px 4px;
20 #container .masked {
21 -webkit-mask-image: url(resources/alpha-gradient.png);
22 -webkit-mask-repeat: repeat;
23 -webkit-mask-size: 50px;
25 </style>
26 <p>Testing masks on compositing layers.</p>
27 <div id="container">
28 <div class="masked box"></div>
29 <div class="masked box"></div>
30 <div class="masked box"></div>
31 </div>