﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
10543	EnterBR - BR isn't respected for the first line when ShiftEnterP is used	Jakub Ś		"I have found this when reproducing #10537

1. Configure editor in the following way:
{{{
var editor = CKEDITOR.replace( 'editor1', {	
				    toolbar:[
						[ 'Source' ], [ 'Bold', 'Italic' ]
					],
					enterMode : CKEDITOR.ENTER_BR,
					shiftEnterMode : CKEDITOR.ENTER_P		
			});			
}}}
2. In editor type ""test"", press Shift+Enter, type ""test2""
3. Switch to Source
Result: {{{<p>test</p><p>test2</p>}}} [[BR]]
Expected: {{{test<p>test2</p>}}} [[BR]]

NOTE: For every other line modes work i.e. they insert proper tags.  [[BR]]
Because of this I have doubts if this is bug because this may be simply how editor works -  “there is no BR separating lines but there is P below so wrap both in P” 

Any comments are welcome.

Problem can be reproduced from CKEditor 3.0 till present (4.1.2)"	Bug	closed	Normal		General	3.0	invalid		
