Wrong transformation when removing list
Steps to Reproduce
- Load the following HTML at the source view:
<ul>
<li>Line 1</li>
<li>
<h1>Line 2</h1>
</li>
<li>Line 3</li>
</ul>
- Switch to WYSIWYG;
- At "Line 2", remove the bullet (clicking on the toolbar button);
- Switch to Source.
Current Result
<ul>
<li>Line 1</li>
</ul>
<p>
<h1>Line 2</h1>
</p>
<ul>
<li>Line 3</li>
</ul>
Expected Result
<ul>
<li>Line 1</li>
</ul>
<h1>Line 2</h1>
<ul>
<li>Line 3</li>
</ul>
Change History (2)
Component: |
General →
Core : Lists
|
Resolution: |
→ fixed
|
Status: |
new →
closed
|
Fixed with [892].
Click here for more info about our SVN system.