Opened 16 years ago
Last modified 15 years ago
#3607 confirmed Bug
Enterykey break nested list
| Reported by: | Garry Yao | Owned by: | |
|---|---|---|---|
| Priority: | Normal | Milestone: | |
| Component: | UI : Enter Key | Version: | |
| Keywords: | IE | Cc: |
Description
The following case is even correct with v2.
Reproducing Procedures
- Open the replace by class example page with the following content:
<ol> <li>item1</li> <li>item2^ <ol> <li>item3</li> </ol> </li> </ol> - Now press EnterKey to breakline;
- Expected Result :
<ol> <li> item1</li> <li> item2</li> <li> <br /> <ol> <li> item3</li> </ol> </li> </ol>
- Actual Result : Note that the new list item line height is messed up without some necessary content within it.
<ol> <li> item1</li> <li> item2</li> <li> <ol> <li> item3</li> </ol> </li> </ol>
- Expected Result :
Change History (2)
comment:1 Changed 16 years ago by
| Component: | Core : Styles → UI : Enter Key |
|---|---|
| Keywords: | Confirmed IE added |
| Milestone: | → CKEditor 3.x |

A JavaScript error occurred in node.js/line 162
insertBefore : function( node ) { node.$.parentNode.insertBefore( this.$, node.$ ); <<<<<<<<<< return node; },