Changes between Initial Version and Version 1 of Ticket #11861
- Timestamp:
- Apr 25, 2014, 11:23:11 AM (11 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #11861 – Description
initial v1 1 1 It's a follow-up of #9998, which covers a single [http://dev.ckeditor.com/ticket/9998#spancreatedwhilejoiningtwoadjacentelements case]. 2 2 3 ---- 4 3 5 ==== Example 1 ==== 4 6 … … 10 12 2. Backspace. 11 13 3. `<p>foo<span style="line-height:1.6">bar</span></p>` 14 4. '''Expected:''' 15 {{{ 16 <p>foo^bar</p> 17 }}} 12 18 13 19 ==== Example 2 ==== … … 20 26 2. Backspace. 21 27 3. `<h1>foo<span style="font-size:13px; line-height:1.6">bar</span></h1>` 28 4. '''Expected:''' 29 {{{ 30 <h1>foo^bar</h1> 31 }}}