Ticket #1334 (closed Bug: fixed)
IE: List indentation is broken when selection is at the end of the line
| Reported by: | fredck | Owned by: | martinkou |
|---|---|---|---|
| Priority: | Normal | Milestone: | FCKeditor 2.5 Beta |
| Component: | General | Version: | SVN (FCKeditor) - Retired |
| Keywords: | Confirmed IE | Cc: |
Description
Steps to Reproduce
- Remove all text;
- Type "Line 1" and select the "Numbered List" button;
- Type "Line 2";
- Hit the "Increase Indent" button.
Current Results
<ol>
<li>Item 1</li>
<li style="margin-left: 40px">Item 2</li>
</ol>
Expected Results
<ol>
<li>Item 1
<ol>
<li>Item 2</li>
</ol>
</li>
</ol>
This result can be achieved by clicking in the middle of "Line 2" after step 3.
Reproducible with IE. Ok with FF.
Change History
Note: See
TracTickets for help on using
tickets.

#1156 should be checked after fixing this one.