Bug 18260 - 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
Summary: There is one row in table, and it cells using colspan, no width define. Table...
Status: RESOLVED WORKSFORME
Alias: None
Product: WebKit
Classification: Unclassified
Component: Tables (show other bugs)
Version: 525.x (Safari 3.1)
Hardware: PC Windows XP
: P2 Normal
Assignee: Nobody
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2008-04-01 06:12 PDT by Dmitry K.
Modified: 2011-01-06 09:43 PST (History)
2 users (show)

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Dmitry K. 2008-04-01 06:12:02 PDT
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%.
Comment 1 Nico Weber 2011-01-06 09:43:40 PST
We seem to match Firefox by now.