Opened 12 years ago
Last modified 12 years ago
#9123 confirmed Bug
outdent RLT list item with subsequent LTR item
Reported by: | Garry Yao | Owned by: | |
---|---|---|---|
Priority: | Normal | Milestone: | |
Component: | Core : Lists | Version: | 3.3 |
Keywords: | Cc: |
Description
- Load the following editor content:
<ol> <li> foo <ol> <li dir="rtl"> ^bar</li> <li> baz</li> </ol> </li> </ol>
- Press the Outdent button
- Actual:
<ol> <li> foo</li> <li dir="rtl"> bar <ol> <li> baz</li> </ol> </li> </ol>
- Expected:
<ol> <li> foo</li> <li dir="rtl"> bar <ol> <li dir="ltr"> baz</li> </ol> </li> </ol>
Change History (2)
comment:1 Changed 12 years ago by
comment:2 Changed 12 years ago by
Status: | new → confirmed |
---|---|
Version: | → 3.3 |
Reproducible in all browsers from CKEditor 3.3.
Additinally IE and FF wrap "bar" in P or DIV (even in BR mode!) - #9151
Not a recent regression.