﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
10091	Blockquote treated like an inline element when added via a custom styleSet	Michael C.	Jakub Ś	"I need to insert blockquotes with a certain class attribute. To that end, I've added a custom stylesSet that has the following:

{{{
CKEDITOR.stylesSet.add('quotes',[
	// Block Styles
	{
		name:'Pullquote',
		element:'blockquote',
		attributes:{
			'class':'pullquote'
		}
	}
]);
}}}

However, a blockquote inserted in this manner:

- Appears under the ""Inline Styles"" section of the Styles dropdown
- Behaves like an inline element (selecting ""Pullquote"" from the list when the caret is positioned in the middle of a word splits the word with the blockquote tag.
- Is inserted inside P tags
- Can't even be applied to a block of selected text

The expected behavior would be for a blockquote to behave exactly like a heading tag does. For example, adding the following to the styleSet works as expected:

{{{

	{
		name:'header',
		element:'h3',
		attributes:{
			'class':'test'
		}
	},
}}}

Other issues possibly related to this are the need to be able to have text inside a P tag nested inside blockquote tag, etc, but those are probably for another ticket. :)"	Bug	closed	Normal	CKEditor 4.4.2	Core : Styles	3.2.1	fixed		
