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

Side by Side Diff: LayoutTests/fast/scrolling/non-composited-scrolling-repaint-local-background-expected.html

Issue 460883002: Non-composited scrolling div should invalidate when it has descendant paints to its backing (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rebaseline Created 6 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 | Annotate | Revision Log
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <style>
3 #container {
4 overflow: scroll;
5 width: 400px;
6 height: 300px;
7 background: linear-gradient(black, white);
8 background-attachment: local;
9 }
10
11 #bloat {
12 height: 1000px;
13 }
14 </style>
15 <div id="container">
16 <div id="bloat"></div>
17 </div>
18 <script>
19 document.getElementById('container').scrollTop = 1000;
20 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698