Currently using CKEditor 3.6.2 (revision 7275) for .Net and I think we've found an issue.
Here's the source when you color some text in IE 8:
In Chrome and FireFox though it looks like this:
There's only one minor difference, that the color tag in IE adds a space between the colon and the hash sign, while Chrome and FireFox do not.
This is causing us a bit of an issue because we're attempting to port the content to a PDF using crystal reports, and with the space included, it does not render the color at all.
Anyone ever have a problem like this or found a solution? Currently we're going to parse the string and remove the space if it's found, but I'm hoping there's a better solution than that.
Here's the source when you color some text in IE 8:
<p> Colorful <span style="color: #ff0000">text</span> here</p>
In Chrome and FireFox though it looks like this:
<p> Colorful <span style="color:#ff0000;">text</span> here</p>
There's only one minor difference, that the color tag in IE adds a space between the colon and the hash sign, while Chrome and FireFox do not.
This is causing us a bit of an issue because we're attempting to port the content to a PDF using crystal reports, and with the space included, it does not render the color at all.
Anyone ever have a problem like this or found a solution? Currently we're going to parse the string and remove the space if it's found, but I'm hoping there's a better solution than that.