Hello,
In regards to ckeditor, we have found an odd bug.
"li" elements which are not nested inside of a "ul", and inside of 3 levels or more of tags, cause the parser/cleaner to duplicate the HTML multiple times (sometimes hanging the browser).
I know "li" without "ul" is bad HTML, but the handling of the problem with the HTML is a difficulty.
Try pasting this code into source view:
Then switch back to WYSIWYG view. Anything of this format causes the HTML to duplicate itself several times.
Any thoughts? We are planning on using ckeditor in a commercial app, and would like to be sure that our clients bad HTML code is ignored/cleaned/deleted, as opposed to this behavior.
Thanks.
In regards to ckeditor, we have found an odd bug.
"li" elements which are not nested inside of a "ul", and inside of 3 levels or more of tags, cause the parser/cleaner to duplicate the HTML multiple times (sometimes hanging the browser).
I know "li" without "ul" is bad HTML, but the handling of the problem with the HTML is a difficulty.
Try pasting this code into source view:
<table> <tr> <td> ABC <table> <tr> <td> XYZ <table> <tr> <td> 123 <li>Hi</li><li>Hello</li><li>Hola</li> </td> </tr> </table> </td> </tr> </table> </td></tr></table>
Then switch back to WYSIWYG view. Anything of this format causes the HTML to duplicate itself several times.
Any thoughts? We are planning on using ckeditor in a commercial app, and would like to be sure that our clients bad HTML code is ignored/cleaned/deleted, as opposed to this behavior.
Thanks.
Re: Copy/Paste Duplication Bug
I'd report it as a bug. Better yet, if you can debug it and figure out where the bug lies that's even more helpful. My guess is that since: <li>Hi</li><li>Hello</li><li>Hola</li> doesn't create a list on it's own, that is the base of the problem.
Bug Report: http://dev.ckeditor.com/ticket/6167