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

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

Issue 2791433003: Fix Border collapsing with colpsan / rowspan cells
Patch Set: bug 2902 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 <html>
3 <head>
4 <style>
5 table { border-collapse: collapse; }
6 td {
7 height: 10px;
8 width: 50px;
9 border: medium solid white;
10 }
11 </style>
12 </head>
13 <body>
14 <table>
15 <tr><td colspan="3"></td></tr>
16 <!-- There should be only a 50px border above the first cell not above the e ntire line. -->
17 <tr><td style="border-top: thick solid black;"></td><td></td><td></td></tr>
18 </table>
19 </body>
20 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698