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

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: Minor cleanup. 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 <script>
2 onload = function() {
3 document.getElementById('scroller').scrollTop = 500;
4 }
5 </script>
6 <style>
7 #scroller {
8 background: gray local;
9 border: 10px solid green;
10 overflow: scroll;
11 width: 200px;
12 height: 200px;
13 }
14
15 #spacer {
16 height: 500px;
17 }
18 </style>
19 <div id="scroller">
20 <div id="spacer"></div>
21 <p>Text content</p>
22 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698