Opened 13 years ago

Last modified 13 years ago

#8533 confirmed Bug

Carriage return disappears

Reported by: Flavien CROCHARD Owned by:
Priority: Normal Milestone:
Component: General Version: 3.1.1
Keywords: Cc:

Description

In source mode, enter this code :

<div>foo</div>
<br />
It's a test.

In wysiwyg mode, justify the words 'Its a test'. The br tag disappears. config.enterMode is set to CKEDITOR.ENTER_BR

Change History (1)

comment:1 Changed 13 years ago by Jakub Ś

Keywords: IE Firefox Chrome removed
Status: newconfirmed
Version: 3.6.3 (SVN - trunk)3.1.1

Bug has first occurred in CKEditor 3.1.1. Below are detailed results:

Before CKEditor 3.1.1 code resulted in:

<div>
	foo</div>
<p style="text-align: center;">
	<br />
	It&#39;s a test.</p>

From CKEditor 3.1.1 till CKEditor 3.5 code resulted in:

<div>
	foo</div>
<p style="text-align: center;">
	It&#39;s a test.</p>

From CKEditor 3.5.1 till current CKEritor results in:

<div>
	foo</div>
<div style="text-align: center;">
	It&#39;s a test.</div>
Note: See TracTickets for help on using tickets.
© 2003 – 2022, CKSource sp. z o.o. sp.k. All rights reserved. | Terms of use | Privacy policy