Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / scrolling / background-paint-composited-scrolled-expected.html
blob1a42870b0965fcff015d2804ccf46bb4c385e375
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 backface-visibility: hidden;
20 overflow: scroll;
22 </style>
23 Tests invalidation and painting of a box changing background while composited scrolled.
24 <div id="container">
25 <div id="box"></div>
26 <div id="box-unchanged"></div>
27 <div style="height: 4000px"></div>
28 </div>