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

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

Powered by Google App Engine
This is Rietveld 408576698