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

Side by Side Diff: third_party/WebKit/LayoutTests/paint/invalidation/table/row-change-background-rowspan-cell-expected.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 <table>
13 <tr>
14 <td rowspan="2">1,1</td>
15 <td>1,4</td>
16 </tr>
17 <tr>
18 <td>2,3</td>
19 </tr>
20 <tr>
21 <td rowspan="2" style="background-color: green">3,1</td>
22 <td style="background-color: green">3,4</td>
23 </tr>
24 <tr>
25 <td>4,4</td>
26 </tr>
27 </table>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698