Opened 18 years ago
Closed 14 years ago
#1730 closed Bug (worksforme)
Delete 1th item from nested list
| Reported by: | Roman Vdoviak | Owned by: | |
|---|---|---|---|
| Priority: | Normal | Milestone: | |
| Component: | Core : Lists | Version: | FCKeditor 2.5.1 |
| Keywords: | IE Firefox | Cc: |
Description
I have nested list, which I create using Increase indent from standart bullet list. Sourcecode is:
<ul>
<li>item 1-1
<ul>
<li>item 2-1</li>
<li>item 2-2</li>
</ul>
</li>
<li>item 1-1</li>
</ul>
When I delete first item in Wysiwyg mode then I get various results.
in IE 6.0, source code is bad, in Wysiwyg look OK:
<ul>
<ul>
<li>item 2-1</li>
<li>item 2-2</li>
</ul>
<li>item 1-1</li>
</ul>
and If I try Decrease Indent, I get Runtime error on Line: 81, (indent is null ...) and then source code is:
<ul>
<ul>
<li>item 2-1 <span id="1199966901715S" style="display: none"> </span></li>
<li>item 2-2</li>
</ul>
<li>item 1-1</li>
</ul>
in FF 2.0.0.11, source code is OK, but Wysivig look bad:
<ul>
<li>
<ul>
<li>item 2-1</li>
<li>item 2-2</li>
</ul>
</li>
<li>item 1-1</li>
</ul>
Change History (3)
comment:1 Changed 18 years ago by
| Keywords: | Confirmed IE Firefox added; nested list removed |
|---|
comment:2 Changed 18 years ago by
| Milestone: | → FCKeditor 2.7 |
|---|
comment:3 Changed 14 years ago by
| Resolution: | → worksforme |
|---|---|
| Status: | confirmed → closed |
FCKeditor was retired and is no longer supported. All active development was moved to its successor, CKEditor 3.x, that is a fully mature and far superior product. We recommend you upgrade as soon as possible since this issue is no longer a problem in current code base.

<ul><ul> ... isn't acceptable in XHTML, because it doesn't validate.
<ul><li><ul> ... validates in XHTML, but doesn't look right.
Perhaps we'll need to move "item 2-1" up one level in such cases.