Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(45)

Side by Side Diff: LayoutTests/paint/invalidation/spv2/updating-scrolling-content-expected.html

Issue 1302183007: Convert some text-based-repaint tests for spv2 (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 <!DOCTYPE html>
2
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 -->
8
9 <html>
10 <head>
11 <style type="text/css">
12 #scroller {
13 overflow: scroll;
14 width: 200px;
15 height: 200px;
16 }
17
18 #indicator {
19 background: green;
20 height: 200px;
21 }
22
23 #content {
24 height: 1000px;
25 }
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>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698