Changes between Initial Version and Version 1 of Ticket #9985
- Timestamp:
- Jan 25, 2013, 8:36:06 AM (12 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #9985
-
Property
Status
changed from
new
toconfirmed
- Property Keywords Webkit added
-
Property
Version
changed from
4.0.1
to3.3
-
Property
Status
changed from
-
Ticket #9985 – Description
initial v1 2 2 3 3 Steps to reproduce: 4 5 4 1. Go to full demo (http://ckeditor.com/demo#full) 6 5 7 6 2. Edit source to replace existing with the following: (this was originally manually typed into the editor) 8 7 {{{ 9 8 <p>This is the first sentence.</p> 10 9 11 10 <p>This is a sentence with an <input name="input" type="text" /> in the middle.</p> 12 11 }}} 13 12 3. Leave source view and put the cursor at the end of the first sentence. 14 13 15 14 4. On windows, hit the DEL key or on a Mac, use FN+DELETE to get a delete rather than a backspace. 16 15 17 Expected: 16 Expected:[[BR]] 17 The paragraphs should be combined, like this: 18 {{{ 19 <p>This is the first sentence.This is a sentence with an <input name="input" type="text" /> in the middle.</p> 20 }}} 18 21 19 The paragraphs should be combined, like this: 20 21 <p>This is the first sentence.This is a sentence with an <input name="input" type="text" /> in the middle.</p> 22 23 Actual: 24 22 Actual: [[BR]] 25 23 The input box and contents afterward are removed: 26 24 {{{ 27 25 <p>This is the first sentence.<span style="line-height: 1.6em;">This is a sentence with an </span></p> 28 29 26 }}}