Opened 16 years ago
Last modified 16 years ago
#3256 closed Bug
Justify across table cells incorrect — at Initial Version
Reported by: | Garry Yao | Owned by: | |
---|---|---|---|
Priority: | Must have (possibly next milestone) | Milestone: | CKEditor 3.0 |
Component: | Core : Styles | Version: | |
Keywords: | Confirmed Review+ | Cc: |
Description
Reproducing Procedures
- Open the replace by class example page;
- Make the following content with the selection by click and drag over table cells;
<table border="1" cellpadding="1" cellspacing="1" style="width: 200px;"> <tbody> <tr> ^<td> text</td> <td> text</td>^ </tr> </tbody> </table>
- Click on 'Justify Right' to apply alignment.
- Actual Result: Javascript Error occurred.
- Expected Result:
<table border="1" cellpadding="1" cellspacing="1" style="width: 200px;"> <tbody> <tr> <td> <p style="text-align: right;">text</p></td> <td> <p style="text-align: right;">text</p></td> </tr> </tbody> </table>