Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / paint / invalidation / spv2 / updating-scrolling-content-expected.html
blobad802202354593bcb81456a556fbeb8479281152
1 <!DOCTYPE html>
3 <!--
4 This test checks that the contents of accelerated scrolling layers are properly
5 updated also outside the current overflow clip. See
6 https://bugs.webkit.org/show_bug.cgi?id=100524.
7 -->
9 <html>
10 <head>
11 <style type="text/css">
12 #scroller {
13 overflow: scroll;
14 width: 200px;
15 height: 200px;
18 #indicator {
19 background: green;
20 height: 200px;
23 #content {
24 height: 1000px;
26 </style>
27 </head>
28 <body>
29 <div id="scroller">
30 <div id="indicator"></div>
31 <div id="content"></div>
32 </div>
33 </body>
34 </html>