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: TablesAssignee: 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   

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.