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

Side by Side Diff: LayoutTests/fast/scrolling/non-composited-scrolling-repaint-to-ancestor-backing-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 }
8
9 #clipping {
10 height: 1000px;
11 }
12
13 #clipped {
14 height: 10px;
15 border: solid 1px black;
16 }
17 </style>
18 <div id="container">
19 <div id="clipping">
20 <div>Lorem ipsum</div>
21 <div id="clipped"></div>
22 </div>
23 </div>
24 <script>
25 document.getElementById('container').scrollTop = 1000;
26 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698