Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / css3 / masking / mask-repeat-round-content-expected.html
blob101c12a5ec8f932a6d0faf4c36cd5ef22316866d
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.png);
17 -webkit-mask-size: 73px 40px;
18 -webkit-mask-repeat: repeat;
19 -webkit-mask-origin: content-box;
20 -webkit-mask-clip: content-box;
22 </style>
23 </head>
25 <body>
26 <div id="back">
27 <div id="front" />
28 </div>
29 </body>
30 </html>