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

Side by Side Diff: third_party/WebKit/LayoutTests/paint/invalidation/invalidate-cell-in-row-with-offset.html

Issue 2157243002: Add in row offset if self-composited. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: none Created 4 years, 5 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 <script src="../../fast/repaint/resources/text-based-repaint.js"></script>
3 <style>
4 .shadow-normal { box-shadow: black 5px -5px 0; }
5 .shadow-inset { box-shadow: black 5px 5px 0 inset; }
6 tr { background-color: blue; will-change: transform; }
7 td { width: 100px; height: 100px; background-color: red; }
8 table { border-spacing: 10px; }
9 </style>
10 <table>
11 <tr ></tr>
12 <tr ><td></td></tr>
13 <tr class="shadow-inset"><td id="target" ></td><td></td></tr>
14 </table>
15 <script>
16 onload = runRepaintAndPixelTest;
17 function repaintTest() {
18 target.style.background = "green";
19 }
20 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698