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

Side by Side Diff: third_party/WebKit/LayoutTests/paint/invalidation/composited-overflow-with-local-background.html

Issue 2235873002: Invalidate scrolling contents layer on background invalidations painted into it. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Invalidate entire scrolling contents layer. 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
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/paint/invalidation/composited-overflow-with-local-background-expected.txt » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 <script src="../../fast/repaint/resources/text-based-repaint.js"></script>
2 <script>
3 function repaintTest() {
4 document.getElementById('scroller').style.background = 'green local';
5 }
6 onload = runRepaintTest;
7 </script>
8 <style>
9 #scroller {
10 background: red local;
11 overflow: scroll;
12 width: 200px;
13 height: 200px;
14 will-change: transform;
15 }
16
17 .spacer {
18 height: 300px;
19 }
20 </style>
21 <!-- #scroller has a locally attached background which will be painted into the
22 scrolling contents layer. When the color changes it should repaint. -->
23 <div id="scroller">
24 <div class="spacer"></div>
25 </div>
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/paint/invalidation/composited-overflow-with-local-background-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698