Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / compositing / reflections / reflection-opacity.html
blob485867f4a4fd234e5efd9238cd97f0bebbd1a702
1 <!DOCTYPE HTML>
2 <html>
3 <head>
4 <meta http-equiv="Content-type" content="text/html; charset=utf-8">
5 <style type="text/css" media="screen">
7 div {
8 -webkit-box-sizing: border-box;
10 .reflected {
11 position: relative;
12 width: 150px;
13 height: 100px;
14 background-color: green;
15 opacity: 0.5;
16 -webkit-box-reflect: below -50px;
19 .composited {
20 transform: translateZ(0);
23 </style>
24 </head>
26 <p>Opacity should be applied after reflection, so you should see a green rectangle below. The overlap between the original and reflection should not be visible.</p>
27 <div class="reflected composited">
28 </div>
30 </html>