Ticket #5788: 5788.patch
File 5788.patch, 546 bytes (added by , 15 years ago) |
---|
-
_source/core/htmlparser/fragment.js
353 353 parser.onText = function( text ) 354 354 { 355 355 // Trim empty spaces at beginning of element contents except <pre>. 356 if ( !currentNode._.hasInlineStarted&& !inPre )356 if ( ( !currentNode._.hasInlineStarted || pendingBRs.length ) && !inPre ) 357 357 { 358 358 text = CKEDITOR.tools.ltrim( text ); 359 359