Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / scrolling / background-paint-non-composited-scrolled-expected.html
blob8e2980af0230191968e1bcec447829ddf3a909aa
1 <!DOCTYPE html>
2 <script src="../../resources/run-after-layout-and-paint.js"></script>
3 <style>
4 #box, #box-unchanged {
5 margin-left: 300px;
6 width: 50px;
7 height: 50px;
9 #box {
10 margin-top: 150px;
11 background-color: green;
13 #box-unchanged {
14 background-color: blue;
16 #container {
17 width: 500px;
18 height: 500px;
19 overflow: scroll;
21 </style>
22 Tests invalidation and painting of a box changing background while composited scrolled.
23 <div id="container">
24 <div id="box"></div>
25 <div id="box-unchanged"></div>
26 <div style="height: 4000px"></div>
27 </div>