Opened 17 years ago
Last modified 17 years ago
#3256 closed Bug
Justify across table cells incorrect — at Version 2
| Reported by: | Garry Yao | Owned by: | Garry Yao |
|---|---|---|---|
| Priority: | Must have (possibly next milestone) | Milestone: | CKEditor 3.0 |
| Component: | Core : Styles | Version: | |
| Keywords: | Confirmed Review+ | Cc: |
Description (last modified by )
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> <tbody> <tr> <td style="text-align: right;"> text</td> </tr> <tr> <td style="text-align: right;"> text</td> </tr> </tbody> </table>
Change History (3)
comment:1 Changed 17 years ago by
| Keywords: | Confirmed added |
|---|---|
| Owner: | set to Garry Yao |
| Status: | new → assigned |
comment:2 Changed 17 years ago by
| Component: | General → Core : Styles |
|---|---|
| Description: | modified (diff) |
| Keywords: | Review? added |
Changed 17 years ago by
| Attachment: | 3256.patch added |
|---|

Update the Expected Result of this TC.