Opened 13 years ago
Last modified 11 years ago
#8492 closed Bug
Can't move cursor behind non-editable element in CKEditor — at Initial Version
Reported by: | Jakub Ś | Owned by: | |
---|---|---|---|
Priority: | Normal | Milestone: | |
Component: | General | Version: | 3.3 |
Keywords: | Cc: |
Description
To reproduce:
- Open replacebycode sample and clear editor contents.
- Paste in the following code:
<p><span contenteditable="false" unselectable="on">[[UMR]]</span></p>
- Put the cursor behind
[[UMR]]^
and try to type
Results:
FF - you can't because you are still inside span. You have to press E.g. 'End' key to get out of span.
As described in https://dev.ckeditor.com/ticket/7796#comment:4 this is browser issue and I doubt it can be fixed.
IE8 - You can't move cursor behind [[UMR]]^
. The issue has been reproducible from CKEditor 3.3.
Opera - the line with [[UMR]]
is not accessible. This issue has also been reproducible from CKEditor 3.3 but you can also reproduce it in plain browser without any CKEditor logic (Perhaps earlier releases had something that helped to omit the problem).
Chrome - Works but you can't see the cursor after you click behind [[UMR]]^
(From CKEditor 3.0).
Currently the only way to workaround the issue is to use code like:
<p> <span contenteditable="false" unselectable="on">[[UMR]]</span><span> </span></p>