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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/table/border-collapsing/border-resolution-colspan-with-both-borders.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 td { width: 50px; height: 50px; }
6 </style>
7 </head>
8 <body>
9 <!-- You should see a green top border and a purple left border. There shoul d be NO RED BORDER. -->
10 <table style="border-collapse: collapse">
11 <tr><td style="border-bottom: 10px solid red;" colspan="2"></td></tr>
12 <tr><td style="border-top: 11px solid green; border-left: 10px solid pur ple" colspan="2"></td></tr>
13 </table>
14 </body>
15 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698