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

Side by Side Diff: third_party/WebKit/LayoutTests/paint/invalidation/table/row-change-background-rowspan-cell.html

Issue 2861653006: Fix LayoutTableRow::AddOverflowFromCell() (Closed)
Patch Set: Deflake the test Created 3 years, 7 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 <style>
3 table {
4 position:relative;
5 top: 180px;
6 }
7 td {
8 width: 50px;
9 height: 50px;
10 }
11 </style>
12 <script src="../resources/text-based-repaint.js"></script>
13 <script>
14 function repaintTest() {
15 target.style.backgroundColor = 'green';
16 }
17 onload = runRepaintAndPixelTest;
18 </script>
19 <table>
20 <tr>
21 <td rowspan="2">1,1</td>
22 <td>1,4</td>
23 </tr>
24 <tr>
25 <td>2,3</td>
26 </tr>
27 <tr id="target">
28 <td rowspan="2">3,1</td>
29 <td>3,4</td>
30 </tr>
31 <tr>
32 <td>4,4</td>
33 </tr>
34 </table>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698