﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
7638	Unable to apply style to the <strong> element	Wiktor Walc		"While checking the new stylesheet parser plugin introduced with #901 I've noted two issues:

1) 
{{{
strong.green {
	color: #739E39;
}
}}}
is not listed as ""Object Style"" after clicking on the `<strong>` element.

2) Using the default sample text:
{{{
<p>This is some <strong>sample text</strong>. You are using <a href=""http://ckeditor.com/"">CKEditor</a>.</p>
}}}
click in the middle of strong element:
{{{
<strong>sa^mple text</strong>
}}}
and in the ""Styles"" dropdown list, select ""strong.green"".
Note that nothing happens (an empty `<strong class=""green""></strong>` is inserted into the document, but that's not an expected result here). 

[[BR]]
[[BR]]
Note: the described problem has nothing to do with the new plugin.
It looks like it always worked this way, to confirm it in older versions, I've tried the following:
{{{
	{
		name : 'Strong blue',
		element : 'strong',
		attributes :
		{
			'style' : 'color:blue',
		}
	},
	{
		name : 'Strong green',
		element : 'strong',
		attributes :
		{
			'class' : 'green',
		}
	},
}}}"	Bug	confirmed	Normal		General	3.0			
