Empty <ul></ul> remains on source
- Load the following HTML:
<ul>
<li>
Item 1
<ul>
<li>
Item 1.1</li>
</ul>
</li>
</ul>
- At the end of "Item 1.1", hit ENTER three times. A new paragraph is started after the list.
- Switch to source.
Note that an empty <ul></ul> is created in the first list item:
<ul>
<li>
Item 1
<ul>
</ul>
<ul>
<li>
Item 1.1</li>
</ul>
</li>
</ul>
Confirmed with FF 3.6 at least. Works well with CKEditor 3.2.
Change History (7)
| Owner: |
set to Garry Yao
|
| Status: |
new →
assigned
|
| Keywords: |
Review+ added; Review? removed
|
| Resolution: |
→ fixed
|
| Status: |
assigned →
closed
|
Affects IE also.