Opened 16 years ago
Closed 16 years ago
#3248 closed Bug (invalid)
Indent problem with nested list item
Reported by: | Garry Yao | Owned by: | |
---|---|---|---|
Priority: | Normal | Milestone: | |
Component: | General | Version: | |
Keywords: | Cc: |
Description
Reproducing Procedures
- Open the replace by class example page;
- Make the following content with the selection;
<ol> <li> level1</li> <li> ^leve1 <ol> <li> level2</li> </ol> </li> </ol>
- Click on 'Increase Indent' command;
- Expected Result :
<ol> <li> level1</li> <ol> <li> ^leve1</li> <li> level2</li> </ol> </ol>
- Actual Result:
<ol> <li> level1 <ol> <li> leve1 <ol> <li> level2</li> </ol> </li> </ol> </li> </ol>
- Expected Result :
Change History (1)
comment:1 Changed 16 years ago by
Milestone: | CKEditor 3.0 |
---|---|
Resolution: | → invalid |
Status: | new → closed |
The current behavior is correct and acceptable.