Opened 9 years ago
Last modified 9 years ago
#14766 confirmed Bug
Deleting columns with merged cells results in columns being left behind.
Reported by: | Jakub Ś | Owned by: | |
---|---|---|---|
Priority: | Normal | Milestone: | |
Component: | Core : Tables | Version: | 4.0 |
Keywords: | Cc: |
Description
Steps to reproduce
- Create 4x4 table and fill each column with same number 1 2 3 4
- In second row merge cell 2 & 3. Alternatively you can use source code below.
<table border="1" cellpadding="1" cellspacing="1" style="width:500px"> <tbody> <tr> <td>1</td> <td>2</td> <td>3</td> <td>4</td> </tr> <tr> <td>1</td> <td colspan="2" rowspan="1">23</td> <td>4</td> </tr> <tr> <td>1</td> <td>2</td> <td>3</td> <td>4</td> </tr> <tr> <td>1</td> <td>2</td> <td>3</td> <td>4</td> </tr> </tbody> </table>
- Select merged cell 23 and cell 4 next to it.
- Right-Click, Select Column-> Delete Columns.
Expected result
All 3 columns get deleted.
Actual result
Column 3 & 4 gets deleted but Column 2 stays. If you try the same with non-merged cells, all three columns get deleted.
Other details (browser, OS, CKEditor version, installed plugins)
Problem can be reproduced in every browser at least from CKEditor 4.0
Attachments (1)
Change History (2)
comment:1 Changed 9 years ago by
Status: | new → confirmed |
---|
Changed 9 years ago by
Attachment: | 2016-07-22_1038.swf added |
---|