﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
8129	Inline CSS does not work when there are comments inside <style> tags	fernandomm		"Inline CSS is not working there are comments inside <style> tags.

How to reproduce:

1) Open ckeditor and switch to source code editor.

2) Paste the following html:

{{{
<html>
<head>
    <style type=""text/css"">
<!--
    .big {
         font-size: 30px;
    }
-->
    </style>
</head>
<body>
    <p class=""big"">
    Example
    </p>
</body>
</html>
}}}

3) Switch back to Wysiwyg editor. ""Example"" text will be small.

If you try with:

{{{
<html>
<head>
    <style type=""text/css"">
    .big {
         font-size: 30px;
    }
    </style>
</head>
<body>
    <p class=""big"">
    Example
    </p>
</body>
</html>
}}}

It works ok."	Bug	confirmed	Normal		General	3.5.3			krithika.ha@…
