Opened 14 years ago
Last modified 9 years ago
#6618 confirmed Bug
Delete Cell leaves a wrong rowspan
Reported by: | Tobiasz Cudnik | Owned by: | |
---|---|---|---|
Priority: | Normal | Milestone: | |
Component: | Core : Tables | Version: | 3.0 |
Keywords: | Cc: |
Description
Delete Cell leaves a wrong rowspan.
- Use following content:
<table border="1" cellpadding="1" cellspacing="1" style="width: 500px; "> <tbody> <tr> <td> 1</td> <td> </td> </tr> <tr> <td> 2</td> <td colspan="1" rowspan="2"> </td> </tr> <tr> <td> 3</td> </tr> </tbody> </table>
- Delete any of the left column's cells (labeled with 1, 2 or 3).
Result: The table has 2 rows and rowspan=2 on the second one (which is wrong).
Change History (5)
comment:1 Changed 14 years ago by
Status: | new → confirmed |
---|---|
Version: | → 3.0 |
comment:2 Changed 14 years ago by
Component: | General → Core : Tables |
---|
comment:3 Changed 13 years ago by
In latest CKEditor 3.6.2 cell has rowspan="2" and extra colspan="1"
comment:4 Changed 12 years ago by
#9895 was marked as duplicate.
These is almost the same TC:
- Insert below
<table border="1" cellpadding="1" cellspacing="1" style="width: 500px"> <tbody> <tr> <td rowspan="3"> </td> <td> </td> </tr> <tr> <td> </td> </tr> <tr> <td> </td> </tr> </tbody> </table>
- Remove one of single cells.
Rowspan set to 3 stays.
Similar with #6568.