Bug 18260
Summary: | There is one row in table, and it cells using colspan, no width define. Table-layout is fixed. Cell width must be = (100% of talbe / N of virtual cols)*colspan value. This works in FF, IE, Opera, not Safari | ||
---|---|---|---|
Product: | WebKit | Reporter: | Dmitry K. <Dmitry-NK> |
Component: | Tables | Assignee: | Nobody <webkit-unassigned> |
Status: | RESOLVED WORKSFORME | ||
Severity: | Normal | CC: | Dmitry-NK, thakis |
Priority: | P2 | ||
Version: | 525.x (Safari 3.1) | ||
Hardware: | PC | ||
OS: | Windows XP |
Dmitry K.
There is one row in table, and it cells using colspan, no width define. Table-layout is fixed. Cell width must be = (100% of talbe / N of virtual cols)*colspan value. This works in FF, IE, Opera, not Safari
<table style="table-layout:fixed;width:100%">
<tr>
<td colspan='3'>...</td>
<td>...</td>
</tr>
</table>
Tds width must be: 75% and 25%.
Attachments | ||
---|---|---|
Add attachment proposed patch, testcase, etc. |
Nico Weber
We seem to match Firefox by now.