Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / compositing / layer-creation / resources / fixed-position-out-of-view-frame.html
blob66bd0d813d03c2dfbcd76ebb6aa72bf995811b9c
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <style>
5 .fixed {
6 position: fixed;
7 width: 10px;
8 height: 10px;
10 </style>
11 </head>
12 <body>
13 <div style="width: 1500px; height: 1500px"></div>
14 <!-- When the size of the frame is 800x600, the first 3 divs are out-of-view and should not be composited, and the last 2 divs should be composited. -->
15 <div class="fixed" style="top: -100px"></div>
16 <div class="fixed"></div>
17 <div class="fixed" style="top: 0px; left: 1000px"></div>
18 <div class="fixed" style="top: 0px; left: 600px"></div>
19 <div class="fixed" style="top: 0px; left: 0px"></div>
20 </body>
21 </html>