Opened 14 years ago
Last modified 14 years ago
#5986 confirmed New Feature
paragraph break inside link creates 2 links; deleting paragraph break does not join them. — at Version 1
Reported by: | Jude Allred | Owned by: | |
---|---|---|---|
Priority: | Normal | Milestone: | |
Component: | General | Version: | 3.0 |
Keywords: | Cc: |
Description (last modified by )
- go to ckeditor.com/demo
- set the 'source' to
<p> <a href="foo">I am a link</a></p>
- return to wysiwyg mode
- place the cursor immediately before the 'l' in 'link'
- press enter
- press backspace
- view source
[expected]: The source is relatively unaltered: there's only one link.
[actual] there are two links:
<p> <a href="foo">I am a </a><a href="foo">link</a></p>
Some more info: Pressing 'enter' the first time breaks the links apart. I would consider this a bug, but the behavior is somewhat reasonable. Pressing 'backspace' removes the break and the links are now adjacent. The expected behavior here is that the links have rejoined, since the "backspace" logically has undone the action of pressing "enter".