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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/table/border-collapsing/wrong-border-middle-colspan.html

Issue 2791433003: Fix Border collapsing with colpsan / rowspan cells
Patch Set: bug 2902 Created 3 years, 8 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 <html>
3 <head>
4 <style>
5 table {
6 border-collapse: collapse;
7 border-spacing: 0px;
8 }
9 td {
10 padding: 0px;
11 width: 50px;
12 height: 50px;
13 }
14 </style>
15 </head>
16 <body>
17 <table>
18 <tr>
19 <td style="border-bottom: 2px solid #0f0;"></td>
20 <td><!-- There should be no border under this cell for this test to pass . --></td>
21 <td style="border-bottom: 2px solid #00f;"></td>
22 </tr>
23 <tr>
24 <td colspan="3" style="border-bottom: 2px solid #f00;"></td>
25 </tr>
26 </table>
27 </body>
28 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698