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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/table/border-collapsing/wrong-border-with-colspan-and-percent-height-width-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 {
5 border-collapse: collapse;
6 width: 50%;
7 height: 50%;
8 }
9
10 td.split {
11 width: 33%;
12 }
13
14 td.border {
15 border: solid black 1pt;
16 }
17
18 td.noBorder {
19 border: none;
20 width: 33%;
21 }
22 </style>
23 </head>
24 <body>
25 <table border="0" cellpadding="0" cellspacing="0">
26 <!-- There should be 2 cells fully circled with borders in the output -->
27 <tr><td colspan="3" class="noBorder"></td></tr>
28 <tr>
29 <td class="border split"></td>
30 <td class="border split"></td>
31 <!-- This cell should not have a border -->
32 <td class="noBorder"></td>
33 </tr>
34 <tr><td colspan="3" class="noBorder"></td></tr>
35 <tr>
36 <td class="border split"></td>
37 <td class="border split"></td>
38 <!-- This cell should not have a border -->
39 <td class="noBorder"></td>
40 </tr>
41 <tr><td colspan="3" style="border:none;"></td></tr>
42 </table>
43 </body>
44 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698