Changes between Initial Version and Version 1 of Ticket #5986
- Timestamp:
- Jul 20, 2010, 12:22:21 PM (14 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #5986 – Description
initial v1 1 1. go to ckeditor.com/demo2 2. set the 'source' to1 1. go to ckeditor.com/demo 2 2. set the 'source' to 3 3 {{{ 4 4 <p> 5 5 <a href="foo">I am a link</a></p> 6 6 }}} 7 3. return to wysiwyg mode 8 4. place the cursor immediately before the 'l' in 'link' 9 5. press enter 10 6. press backspace 11 7. view source 12 [expected]: The source is relatively unaltered: there's only one link. 13 [actual] there are two links: 7 3. return to wysiwyg mode 8 4. place the cursor immediately before the 'l' in 'link' 9 5. press enter 10 6. press backspace 11 7. view source 12 13 [expected]: The source is relatively unaltered: there's only one link. 14 15 [actual] there are two links: 16 14 17 {{{ 15 18 <p> … … 17 20 }}} 18 21 19 20 21 22 Some more info: 22 23 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".