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

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

Powered by Google App Engine
This is Rietveld 408576698