Closed
Description
Is this a bug report or feature request? (choose one)
🐞 Bug report
💻 Version of CKEditor
Latest master.
📋 Steps to reproduce
- Prepare the HTML document with the following content:
<div id="editor">
<blockquote>
<ul>
<li>list Item</li>
</ul>
</blockquote>
<p>paragraph</p>
</div>
- Initialize the editor.
✅ Expected result
The paragraph is outside the blockquote.
❎ Actual result
The paragraph is inside the blockquote.
📃 Other details that might be useful
JSFiddle - https://jsfiddle.net/7n2oaurg/
It loads properly if the init HTML is wrapped within div
:
<div id="editor">
<blockquote>
<div>
<ul>
<li>list Item</li>
</ul>
</div>
</blockquote>
<p>paragraph</p>
</div>