Opened 16 years ago
Closed 16 years ago
#3620 closed Bug (fixed)
Unexpected document change when selecting item on elementpath
Reported by: | Garry Yao | Owned by: | Garry Yao |
---|---|---|---|
Priority: | Normal | Milestone: | CKEditor 3.0 |
Component: | Core : Styles | Version: | |
Keywords: | Confirmed Review+ | Cc: |
Description
Reproducing Procedures
- Open the replace by class example page with the following content and selection:
<table><tr><td>te^xt</td></tr></table>
- Now select the '<tr>' item within the element path bar.
- Expected Result : Document structure remains.
- Actual Result : Source codes now as :
<p> <br /> </p> <table> <tbody> <tr> <td> text</td> </tr> </tbody> </table> <p> <br /> </p>
Attachments (1)
Change History (4)
Changed 16 years ago by
Attachment: | 3620.patch added |
---|
comment:1 Changed 16 years ago by
Keywords: | Review? added |
---|---|
Status: | new → assigned |
comment:2 Changed 16 years ago by
Keywords: | Review+ added; Review? removed |
---|
This's caued by #3190, but the fixing is not about #3190, it's about the elementpath resolution, the following selection is only possible by using elementpath bar, but we still need to take care of it:
The problem here is that the correct reporting should be : blockLimit: tr, block : null, so the patch is about modifying the pathBlockLimitElements definition.