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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/table/border-collapsing/wrong-border-with-colspan-nbsp.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 { border-collapse: collapse; }
6 td {
7 border: solid 10px purple;
8 width: 200px;
9 font-family: ahem;
10 font-size: 10px;
11 -webkit-font-smoothing: none;
12 }
13 td.noBorderBottom { border-bottom: 0; }
14 td.noBorderTop { border-top: 0; }
15 td.withBorder { background-color: green; }
16 </style>
17 </head>
18 <body>
19 <!-- The cell with the green background should be circled with a (purple) border . Other cells should have outline the table with borders. -->
20 <table><tr>
21 <td class="noBorderBottom" colspan="2">&nbsp;</td>
22 </tr><tr>
23 <td class="noBorderTop">&nbsp;</td>
24 <td class="withBorder">&nbsp;</td>
25 </tr></table>
26 <br>
27 <table><tr>
28 <td class="noBorderBottom" colspan="2">&nbsp;</td>
29 </tr><tr>
30 <td class="withBorder">&nbsp;</td>
31 <td class="noBorderTop">&nbsp;</td>
32 </tr></table>
33 <br>
34
35 <table><tr>
36 <td class="noBorderBottom">&nbsp;</td>
37 <td class="withBorder">&nbsp;</td>
38 </tr><tr>
39 <td class="noBorderTop" colspan="2">&nbsp;</td>
40 </tr></table>
41
42 <table><tr>
43 <td class="withBorder">&nbsp;</td>
44 <td class="noBorderBottom">&nbsp;</td>
45 </tr><tr>
46 <td class="noBorderTop" colspan="2">&nbsp;</td>
47 </tr></table>
48 <br>
49
50 <table><tr>
51 <td class="noBorderBottom" colspan="3">&nbsp;</td>
52 </tr><tr>
53 <td class="noBorderTop noBorderBottom">&nbsp;</td>
54 <td class="withBorder">&nbsp;</td>
55 <td class="noBorderTop noBorderBottom">&nbsp;</td>
56 </tr><tr>
57 <td class="noBorderTop" colspan="3">&nbsp;</td>
58 </tr></table>
59
60 </body>
61 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698