Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / paint / overflow / background-should-be-recorded-full.html
blob37fb864449bb4a7c811059d7821fff1d6e1c8d83
1 <!DOCTYPE html>
2 <script src="../../resources/run-after-layout-and-paint.js"></script>
3 <style>
4 body {
5 margin: 0;
8 #big-black-box {
9 background-color: black;
10 background-clip: padding-box;
11 height: 10000px;
14 ::-webkit-scrollbar {
15 width: 0px;
16 height: 0px;
18 </style>
19 <div id="big-black-box"></div>
20 <script>
21 runAfterLayoutAndPaint(function() {
22 window.scrollTo(0, 10000);
23 }, true);
24 </script>