Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / compositing / will-change / containing-block-removed-expected.html
blob126c6b870ec0aaf5acad786e292290ab91127dd9
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <style>
5 #container {
6 position: absolute;
7 left: 200px;
8 top: 100px;
9 width: 100px;
10 height: 100px;
11 background-color: blue;
14 .fixed {
15 position: fixed;
16 left: 50px;
17 top: 50px;
18 width: 75px;
19 height: 75px;
20 background-color: green
22 </style>
23 </head>
25 <body>
26 <div id="container">
27 <div class="fixed"></div>
28 </div>
29 </body>
31 </html>