﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
6331	Styles applied to all children elements	b0b0		"paste this in the editor :
{{{
<ul>
	<li>
		line 1</li>
	<li>
		line 2</li>
	<li>
		line 3</li>
</ul>
}}}

then apply a style (from the Styles list) to the UL.
The style is then applied to all LI children elements...

On my site, applying a style ({ name : 'Slider content' , element : 'div',attributes : { 'class' : 'slider_content' }}) to the UL gives this :
{{{
<ul>
	<li>
		<div class=""myClass"">line 1</div></li>
	<li>
		<div class=""myClass"">line 2</div></li>
	<li>
		<div class=""myClass"">line 3</div></li>
</ul>
}}}
instead of :
{{{
<div class=""myClass"">
<ul>
	<li>
		line 1</li>
	<li>
		line 2</li>
	<li>
		line 3</li>
</ul>
</div>
}}}
hoping I am not mistaking on this issue..."	Bug	confirmed	Normal		Core : Styles	3.4			
