Ticket #5626: 5626_ref.patch
File 5626_ref.patch, 750 bytes (added by , 13 years ago) |
---|
-
_source/core/htmlparser/fragment.js
237 237 { 238 238 addElement( currentNode, currentNode.parent ); 239 239 } 240 else if ( tagName in CKEDITOR.dtd.$listItem ) 241 { 242 var list = new CKEDITOR.htmlParser.element( 'ul' ); 243 while ( currentNode.children.length > 0) 244 { 245 list.add( currentNode.children[ 0 ] ); 246 currentNode.children.splice( 0, 1 ); 247 } 248 list.parent = currentNode; 249 addPoint = list; 250 reApply = true; 251 } 240 252 else 241 253 { 242 254 if ( nonBreakingBlocks[ currentName ] )