Opened 11 years ago
Last modified 11 years ago
#11861 closed Bug
[Webkit] Span elements created while joining adjacent elements — at Version 1
Reported by: | Olek Nowodziński | Owned by: | |
---|---|---|---|
Priority: | Normal | Milestone: | CKEditor 4.4.1 |
Component: | General | Version: | 3.0 |
Keywords: | Webkit Blink | Cc: | joel.peltonen@… |
Description (last modified by )
It's a follow-up of #9998, which covers a single case.
Example 1
- Set data
<p>foo</p> <p>^bar</p>
- Backspace.
<p>foo<span style="line-height:1.6">bar</span></p>
- Expected:
<p>foo^bar</p>
Example 2
- Set data
<h1>foo</h1> <p>^bar</p>
- Backspace.
<h1>foo<span style="font-size:13px; line-height:1.6">bar</span></h1>
- Expected:
<h1>foo^bar</h1>