Ticket #4949 (closed Bug: fixed)
Inserting table column results in wrong colspan
| Reported by: | tobiasz.cudnik | Owned by: | |
|---|---|---|---|
| Priority: | Normal | Milestone: | |
| Component: | Core : Tables | Version: | 3.0 |
| Keywords: | Cc: |
Description
Inserting table column results in wrong colspan.
Reproduce
- Use following content:
<table> <tbody> <tr> <td colspan="2"> TD</td> </tr> <tr> <td> </td> <td> </td> </tr> </tbody> </table>
- Right click on first cell "TD" and choose "Column -> Add column after".
- Result
<table> <tbody> <tr> <td colspan="2"> TD</td> <td colspan="2"> </td> </tr> <tr> <td> </td> <td> </td> <td> </td> </tr> </tbody> </table>
- Expected: New column should be added in first row without colspan="2".
Change History
Note: See
TracTickets for help on using
tickets.

Milestone CKEditor 3.x deleted