Opened 15 years ago
Last modified 13 years ago
#5085 confirmed Bug
Bullet points duplicated on single line
Reported by: | bpbdope | Owned by: | |
---|---|---|---|
Priority: | Normal | Milestone: | |
Component: | Core : Lists | Version: | 3.0 |
Keywords: | Firefox IE | Cc: |
Description
First, create a few bullet point lists items with nested lists. Next try to select a nested list and start typing to overwrite the text. Notice how the text continues at the parent list level and the multiple bullet points on the same line. It is really hard to recover from this, without deleting and recreating the lists. It seems to only be an issue in Firefox and IE6,7,8. Looking at the source, it seems that there is an orphaned <ul> tag under an empty <li> tag.
For example, the source below will cause the duplicate bullet points:
<ul>
<li>first level</li> <li>
<ul>
<li>start of 2nd level</li>
</ul>
</li>
</ul>
It is possible to get into this situation using the above steps to highlight and overwrite text.
Attachments (7)
Change History (9)
Changed 15 years ago by
Attachment: | trial 1 before.txt added |
---|
Changed 15 years ago by
Attachment: | trial 1 after.txt added |
---|
comment:1 Changed 15 years ago by
Keywords: | bullet point lists duplicate removed |
---|---|
Milestone: | CKEditor 3.x |
comment:2 Changed 13 years ago by
Component: | General → Core : Lists |
---|---|
Keywords: | Firefox IE added |
Status: | new → confirmed |
Version: | 3.1 → 3.0 |
Changed 13 years ago by
Attachment: | IE679_correct.png added |
---|
Changed 13 years ago by
Attachment: | IE679_incorrect.png added |
---|
Changed 13 years ago by
Attachment: | IE679_incorrect_result.png added |
---|
Changed 13 years ago by
Attachment: | IE8_result.png added |
---|
Changed 13 years ago by
Attachment: | FF_result.png added |
---|
Reproducible in Firefox and IE6-9 from CKEditor 3.0
'Here is some test text'
and'Test test test test'
)Results:
'NIH'
will become sublist element (See IE679_incorrect_result.png)'test'
next to main list'NIH'
element and not in sublist under'HHS'
element (See FF_result.png)This is not that bad as you can simply press enter and then indent current element.