Opened 13 years ago
Last modified 13 years ago
#8811 confirmed Bug
Cell width is not updated when a cell is split horizontally
Reported by: | Teresa Monahan | Owned by: | |
---|---|---|---|
Priority: | Normal | Milestone: | |
Component: | Core : Tables | Version: | 3.1 |
Keywords: | IBM | Cc: | Damian, Satya Minnekanti |
Description
To Reproduce:
- Insert a table into CKEditor.
- Apply a width of 200px to the first cell using the Cell Properties dialog.
- Right click in the first cell and select Cell -> Split Cell horizontally. A new cell will be inserted after the selected cell.
- Switch to source view to see the HTML markup for the table.
Problem: The cell that was split and the new cell both have a width of 200px. They should each have a width of 100px.
<table border="1" cellpadding="1" cellspacing="1" style="width: 500px;"> <tbody> <tr> <td style="width: 200px;"> </td> <td style="width: 200px;"> </td> <td> </td> </tr> ..... </tbody> </table>
Change History (1)
comment:1 Changed 13 years ago by
Status: | new → confirmed |
---|---|
Version: | 3.6.3 (SVN - trunk) → 3.1 |