Opened 16 years ago
Closed 16 years ago
#3244 closed Bug (duplicate)
Apply block style accross table problem
Reported by: | Garry Yao | Owned by: | Garry Yao |
---|---|---|---|
Priority: | Normal | Milestone: | CKEditor 3.0 |
Component: | General | Version: | |
Keywords: | Firefox Confirmed | Cc: |
Description
Reproducing Procedures
- Open the replace by class example page;
- Make the following content with the selection by click and drag the mouse over the two cells:
<table border="1" cellpadding="1" cellspacing="1" style="width: 200px;"> <tbody> <tr> ^<td> text<br /> </td> <td> text<br /> </td>^ </tr> </tbody> </table>
- Open 'Styles' combo and select the first option 'Blue Title'.
- Actual Result:
<table cellspacing="1" cellpadding="1" border="1" style="width: 200px;"> <tbody> <tr> <td> <h3 style="color: Blue;">text</h3> </td> <h3 style="color: Blue;"></h3> <h3 style="color: Blue;"></h3> <td> <h3 style="color: Blue;">text</h3> </td> </tr> </tbody> </table>
- Actual Result:
- Expected Result :
<table border="1" cellpadding="1" cellspacing="1" style="width: 200px;"> <tbody> <tr> <td> <h3 style="color: Blue;"> text</h3> </td> <td> <h3 style="color: Blue;"> text</h3> </td> </tr> </tbody> </table>
Change History (2)
comment:1 Changed 16 years ago by
Keywords: | Firefox Confirmed added |
---|---|
Owner: | set to Garry Yao |
Status: | new → assigned |
comment:2 Changed 16 years ago by
Resolution: | → duplicate |
---|---|
Status: | assigned → closed |
Should be fixed by #3352.
Dedicate to FF.