[Webkit-unassigned] [Bug 109841] New: Tables using colspan, with border-collapse draw borders incorrectly

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Thu Feb 14 09:09:40 PST 2013


https://bugs.webkit.org/show_bug.cgi?id=109841

           Summary: Tables using colspan, with border-collapse draw
                    borders incorrectly
           Product: WebKit
           Version: 528+ (Nightly build)
          Platform: All
        OS/Version: All
            Status: UNCONFIRMED
          Severity: Normal
          Priority: P2
         Component: CSS
        AssignedTo: webkit-unassigned at lists.webkit.org
        ReportedBy: franke at bethzur.com


Using this snippet, the second cell in the second row has a top border and it shouldn't. Chrome fails here, but IE and FF are fine.

<html>
<head><style type="text/css">
table { empty-cells: show; border-collapse: collapse; }
table td { width: 50px; height: 25px; }
td.b { border: 1px solid gray; }
</style>
</head>
<body>
<table cellspacing="0" cellpadding="0">
<tr> <td colspan="2">This is a test</td> <td class="b"></td> <td></td> <td></td> </tr>
<tr> <td class="b"></td> <td></td> <td class="b"></td> <td></td> </tr>
<tr> <td></td> <td></td> <td></td> <td></td> </tr>
</table>
</body>
</html>

-- 
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.



More information about the webkit-unassigned mailing list