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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/scroll-behavior/overflow-scroll-with-local-background-and-text-expected.html

Issue 2254893005: Fix visual rect for background box painting in composited scrollers. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Invalidate scrolling contents layer and mark paint layer setNeedsRepaint. Created 4 years, 4 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
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <script>
3 onload = function() {
4 scroller.scrollTop = 500;
5 }
6 </script>
7 <style>
8 #scroller {
9 background: gray local;
10 border: 10px solid green;
11 overflow: scroll;
12 width: 200px;
13 height: 200px;
14 }
15
16 #spacer {
17 height: 500px;
18 }
19 </style>
20 <div id="scroller">
21 <div id="spacer"></div>
22 <p>Text content</p>
23 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698