#3801: IE: Comments at the start of the document get lost
--------------------------+-------------------------------------------------
 Reporter:  fredck        |       Owner:  tobiasz.cudnik
     Type:  Bug           |      Status:  assigned      
 Priority:  Normal        |   Milestone:  CKEditor 3.0  
Component:  General       |     Version:  SVN (CKEditor)
 Keywords:  Confirmed IE  |  
--------------------------+-------------------------------------------------

Comment(by tobiasz.cudnik):

 The reason for this is filtering data via innerHTML
 {{{
 var div = document.createElement( 'div' );
 div.innerHTML = "<!-- foo --><p>bar</p>";
 console.log( div.innerHTML );
 }}}
 Result of above code will be
 {{{
 <P>bar</P>
 }}}
 Such filtering takes place in htmldataprocessor plugin.

-- 
Ticket URL: <http://dev.fckeditor.net/ticket/3801#comment:2>
FCKeditor <http://www.fckeditor.net/>
The text editor for Internet
------------------------------------------------------------------------------
_______________________________________________
FCKeditor-Trac mailing list
FCKeditor-Trac@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fckeditor-trac

Reply via email to