Changes between Initial Version and Version 1 of Ticket #10940, comment 1
- Timestamp:
- Oct 3, 2013, 2:36:39 PM (11 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #10940, comment 1
initial v1 3 3 * In IE it is possible to remove BR (CKE and native) 4 4 * In Blink and Webkit whole element gets removed (CKE and native) 5 * In FF this is complicated. In native code whole span gets removed but in editor (starting from CKE 3.5.1) pressing delete when having cursor in line with BR causes nothing. Elements path is changing to BODY P BR and it is impossible to remove Span. **This IMO is the only thing that can be considered a bug**.[[BR]] If you put cursor in S pan, elements path will show BODY P SPAN. Press Up and Down arrow to get out of SPAN boundaries and press backspace. It then works. This is no editor bug but FF weird feature.5 * In FF this is complicated. In native code whole span gets removed but in editor (starting from CKE 3.5.1) pressing delete when having cursor in line with BR causes nothing. Elements path is changing to BODY P BR and it is impossible to remove Span. **This IMO is the only thing that can be considered a bug**.[[BR]] If you put cursor in SPAN, elements path will show BODY P SPAN. Press Up and Down arrow to get out of SPAN boundaries and press backspace. It then works. Please note this is no editor bug but FF weird feature. 6 6 7 7 {{{ … … 10 10 <span contenteditable="false">test</span></p> 11 11 }}} 12 13 14 ---- 15 **UPDATE:**[[BR]] 16 17 After disscussing this with @Reinmar I will confirm this issue. 18 19 **TC:** 20 1. Insert below code 21 {{{ 22 <p> 23 <br /> 24 <span contenteditable="false">test</span></p> 25 }}} 26 2. Put cursor in first line and press delete 27 3. Cursor dissapears, elements path shows you are inside BR and you have to click in content area again. 28 29 Problem can only be reproduced in Firefox from CKEditor 3.5.1 rev. [6373]