Opened 14 years ago
Closed 14 years ago
#6616 closed Bug (duplicate)
BIDI: Increase RTL list item indent doesn't work.
Reported by: | Paweł Horzela | 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 (4)
comment:1 follow-up: 2 Changed 14 years ago by
Component: | General → Core : Lists |
---|---|
Status: | new → confirmed |
Version: | → 3.4 |
comment:2 Changed 14 years ago by
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 14 years ago by
Cc: | jamcunni@… added |
---|---|
Keywords: | IBM 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.
comment:4 Changed 14 years ago by
Resolution: | → duplicate |
---|---|
Status: | confirmed → closed |
The ticket itself is a DUP of #6569, while for the case reported by James, it's a different bug (transform a list instead for indenting a list) so we should open new ticket for it.
Confirmed With CKE 3.4 and IE8