#9151 closed Bug (fixed)
Outdent RLT list item results in item wrapped in Div or P
Reported by: | Jakub Ś | Owned by: | Olek Nowodziński |
---|---|---|---|
Priority: | Normal | Milestone: | |
Component: | Core : Lists | Version: | 3.6.3 |
Keywords: | Cc: |
Description (last modified by )
I have found this problem while reproducing #9123
- Load the following editor content:
<ol> <li> foo <ol> <li dir="rtl"> ^bar</li> <li> baz</li> </ol> </li> </ol>
- Press the Outdent (Decrease Indent) button:
Result: Please note that there is P wrapping "bar" element. In DIV and BR mode this is changed to DIV.
<ol> <li> foo</li> <li dir="rtl"> <p dir="rtl"> ^bar</p> <ol> <li> baz</li> </ol> </li> </ol>
Reproducible in IE6-9 and Firefox from CKEditor 3.6.3 rev. [7419].
Change History (9)
comment:1 Changed 12 years ago by
Status: | new → confirmed |
---|
comment:2 Changed 12 years ago by
Component: | General → Core : Lists |
---|
comment:3 Changed 12 years ago by
comment:4 Changed 11 years ago by
Description: | modified (diff) |
---|
comment:6 Changed 11 years ago by
Owner: | set to Olek Nowodziński |
---|---|
Status: | confirmed → assigned |
comment:7 Changed 11 years ago by
Starting with the following HTML:
<ol> <li>X <ol> <li dir="rtl">^Y</li> <li>Y</li> </ol> </li> <li>X</li> </ol>
and executing outdent produces:
<ol> <li>X</li> <li dir="rtl">Y <ol> <li>Y</li> </ol> </li> <li>X</li> </ol>
Which isn't perfect and kinda controversial as the second item of the initially nested list (and its successors, if any) also gets dir="rtl"
. Still I see no paragraphs or divs there and I'm unable to reproduce the case.
comment:8 Changed 11 years ago by
Resolution: | → fixed |
---|---|
Status: | assigned → closed |
Problem has expired on trunk -> It got fixed in version 3.6.4.
comment:9 Changed 11 years ago by
Milestone: | CKEditor 4.2.1 |
---|
The ticket was fixed in 3.6.4 and if it cannot be reproduced in 4.x then the milestone 4.2.1 does not make sense here.
#10564 is also caused by [7419]