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

Side by Side Diff: third_party/WebKit/LayoutTests/paint/invalidation/hover-invalidation-table-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 body {
4 font: 10px/1 Ahem;
5 }
6
7 .bla {
8 background-color: green;
9 }
10
11 table {
12 position:relative;
13 top: 180px;
14 }
15 </style>
16 <table>
17 <tr>
18 <td rowspan="2">1,1</td>
19 <td>1,4</td>
20 </tr>
21 <tr>
22 <td>2,3</td>
23 </tr>
24 <tr class="bla">
25 <td rowspan="2" id="secondRowSpan">3,1</td>
26 <td>3,4</td>
27 </tr>
28 <tr>
29 <td>4,4</td>
30 </tr>
31 </table>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698