Ticket #4172: 4172_2.patch
File 4172_2.patch, 1.8 KB (added by , 14 years ago) |
---|
-
_source/plugins/htmldataprocessor/plugin.js
6 6 (function() 7 7 { 8 8 // Regex to scan for at the end of blocks, which are actually placeholders. 9 var tailNbspRegex = /^[\t\r\n ]* $/; 9 // Safari transforms the to \xa0. (#4172) 10 var tailNbspRegex = /^[\t\r\n ]*(?: |\xa0)$/; 10 11 11 12 var protectedSourceMarker = '{cke_protected}'; 12 13 -
CHANGES.html
224 224 <li><a href="http://dev.fckeditor.net/ticket/4164">#4164</a> : Now it is possible to paste text 225 225 in Source mode even if forcePasteAsPlainText = true.</li> 226 226 <li><a href="http://dev.fckeditor.net/ticket/4129">#4129</a> : [FF]Unable to remove list with Ctrl-A.</li> 227 <li><a href="http://dev.fckeditor.net/ticket/4172">#4172</a> : [Safari] The trailing 228 <br> was not been always added to blank lines ending with &nbsp;.</li> 227 229 </ul> 228 230 <h3> 229 231 CKEditor 3.0 RC</h3> -
_source/tests/plugins/styles/styles.html
578 578 style.applyToRange( range ); 579 579 580 580 var result = getInnerHtmlParsed( element ); 581 582 if ( CKEDITOR.env.webkit ) 583 result = result.replace( '\xa0', ' ' ); 584 581 585 assert.areSame( '<p> paragraph1 paragraph1<br />paragraph2</p><p> para graph3</p>', 582 586 result ); 583 587 },