Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / paint / overflow / fixed-children-should-not-scroll.html
blobff01f4ec8ebcca70662cb880464e1a86d45c8d77
1 <!DOCTYPE html>
2 <script src="../../resources/run-after-layout-and-paint.js"></script>
3 <style>
4 #bloat {
5 height: 10000px;
8 #fixed {
9 position: fixed;
10 left: 300px;
11 top: 200px;
12 width: 100px;
13 height: 100px;
14 background-color: green;
17 #fixed-child {
18 margin-left: 25px;
19 margin-top: 25px;
20 width: 50px;
21 height: 50px;
22 background-color: blue;
25 ::-webkit-scrollbar {
26 width: 0px;
27 height: 0px;
29 </style>
30 <div id="bloat"></div>
31 <div id="fixed">
32 <div id="fixed-child"></div>
33 </div>
34 <script>
35 runAfterLayoutAndPaint(function() {
36 window.scrollTo(0, 100);
37 }, true);
38 </script>