#2533: PageBreak code is different in Gecko and IE
--------------------------------+-------------------------------------------
 Reporter:  mayhem              |       Owner:                 
     Type:  Bug                 |      Status:  new            
 Priority:  Normal              |   Milestone:                 
Component:  Core : Output Data  |     Version:  FCKeditor 2.6.3
 Keywords:  pagebreak           |  
--------------------------------+-------------------------------------------
 I use PageBreak when edit my topics to divide text on topic summary and
 topic body. Due to the differencies in Gecko and IE realisation, code like

 {{{
 obj.style.pageBreakAfter="always";
 }}}

 generates different HTML. In Gecko CSS style inserts without ";" but in IE
 symbol ";" afetr CSS rule exists. So HTML code of bageBreak in Gecko is

 {{{
 <div style="page-break-after: always"><span
 style="display:none">&nbsp;</span></div>
 }}}

 and in IE is

 {{{
 <div style="page-break-after: always;"><span
 style="display:none;">&nbsp;</span></div>
 }}}

 So i can't use it to split HTML into two parts in my PHP code.

-- 
Ticket URL: <http://dev.fckeditor.net/ticket/2533>
FCKeditor <http://www.fckeditor.net/>
The text editor for Internet
-------------------------------------------------------------------------
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
_______________________________________________
FCKeditor-Trac mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/fckeditor-trac

Reply via email to