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

Side by Side Diff: LayoutTests/fast/scrolling/non-composited-scrolling-repaint-local-background.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 transform: translateZ(0);
14 }
15 </style>
16 <div id="container">
17 <div id="bloat"></div>
18 </div>
19 <script>
20 if (window.testRunner) {
21 testRunner.waitUntilDone();
22 testRunner.displayAsyncThen(function() {
23 document.getElementById('container').scrollTop = 1000;
24 testRunner.notifyDone();
25 });
26 }
27 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698