Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / paint / invalidation / spv2 / scrolling-without-painting-expected.html
blob2d5ce866607bbda0e9973f646df5f111d48e0cee
1 <!DOCTYPE html>
3 <!--
4 This test checks that accelerated scrolling layers can be scrolled without
5 repainting their contents. See https://bugs.webkit.org/show_bug.cgi?id=96087.
6 -->
8 <html>
9 <head>
10 <style type="text/css">
11 #scroller {
12 overflow: scroll;
13 -webkit-overflow-scrolling: touch;
14 width: 200px;
15 height: 200px;
16 border: solid thin blue;
19 #content {
20 height: 1000px;
21 margin-top: 25px;
23 </style>
24 <script type="text/javascript">
25 onload = function() {
26 document.getElementById('scroller').scrollTop = 25;
28 </script>
29 </head>
30 <body>
31 <div id="scroller">
32 <div id="content"></div>
33 </div>
34 </body>
35 </html>