Ticket #6616 (closed Bug: duplicate)
BIDI: Increase RTL list item indent doesn't work.
| Reported by: | paho | Owned by: | |
|---|---|---|---|
| Priority: | Normal | Milestone: | |
| Component: | Core : Lists | Version: | 3.4 |
| Keywords: | IE IBM | Cc: | jamcunni@… |
Description
- Paste source into IE:
<ul> <li dir="rtl"> List item</li> </ul>
- Set focus on 'List item' element and increase indent.
Result: Indent is not increased, but when you go to source view you can notice that 'margin-left' of <ul> element is increased.
Above source is generated only in IE. In other browsers generated source looks like:
<ul dir="rtl"> <li> asdasd</li> </ul>
and it works fine.
To generate source in IE:
- Click on 'New Page' on toolbar.
- Click on bullet list icon and type some text.
- Press 'Enter' and click on bullet icon to remove list in second line.
- Press Ctrl+A and then RTL icon.
Change History
comment:1 follow-up: ↓ 2 Changed 3 years ago by krst
- Status changed from new to confirmed
- Version set to 3.4
- Component changed from General to Core : Lists
comment:2 in reply to: ↑ 1 Changed 3 years ago by krst
Replying to krst:
Confirmed With CKE 3.4 and IE8
<ul> <li dir="rtl"> List item</li> </ul>
output source was of ourse:
<ul style="margin-left: 160px"> <li dir="rtl"> List item</li> </ul>
comment:3 Changed 3 years ago by james c
- Keywords IBM added
- Cc jamcunni@… added
This defect can also be seen in FF 3.6 using the following source:
<ul> <li> List item 1 (LTR)</li> <li dir="rtl"> List item 2 (RTL)</li> <li> List item 3 (LTR)</li> </ul>
Highlight the 2nd list item and click on Increase Indent. The same result as above can be observed.
Note: See
TracTickets for help on using
tickets.

Confirmed With CKE 3.4 and IE8