﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
9393	HTML comments handling	Invictus		"Applying styles to a document which contains html comments produces some unexpected markup. 

For example, applying bold style to the following document
{{{
<p>
	test paragraph1</p>
<!-- test comment -->
<p>
	test paragraph2</p>
<p>
	test paragraph3</p>
<p>
	test paragraph4</p>
}}}
transforms it into
{{{
<p>
	<strong>test paragraph1</strong></p>
<p>
	<strong><!-- test comment --></strong></p>
<p>
	<strong>test paragraph2</strong></p>
<p>
	&nbsp;</p>
<p>
	<strong>test paragraph3</strong></p>
<p>
	<strong>test paragraph4</strong></p>
}}}
Tested on Demo page with Google Chrome 21, and Firefox 15.
"	Bug	closed	Normal		Core : Styles	3.0	fixed		
