Ticket #1415 (new Bug)

Opened 14 months ago

Last modified 14 months ago

empty div tags are removed

Reported by: alfonsoml Owned by:
Priority: Normal Milestone:
Component: General Version: FCKeditor 2.4.3
Keywords: Discussion Cc:

Description

switch to source and paste

<div id="black_box"></div> 

switch twice and you'll see that the content has been lost.

(any browser)

Reported in http://www.fckeditor.net/forums/viewtopic.php?f=6&t=7251

Change History

Changed 14 months ago by fredck

  • keywords Discussion added
  • priority changed from High to Normal

It doesn't happen if we have more content, like:

<div id="black_box"></div>
<p>Test</p>

It is much probably is related to the cleanup we do to avoid having <p></p> or <div></div> tags, retrieving empty content to indicate that the editor has been left empty.

Suppose a user starts typing inside a <div>, and then delete everything with backspace. People claimed to have the editor posting empty, instead of <div></div>. But the ticket comes with another user case, where the editor is used to place an empty container.

What is the desired behavior here, to be able to handle all user cases?

Changed 14 months ago by alfonsoml

Some quick ideas:

  • always, if the editor is in source mode, no clean up should be done (I think that it's the current behavior)
  • If the content is the same that the initial text, then assume that it is right and it shouldn't be cleaned
  • probably a single empty <p> or <br> (with nothing else) could always be cleaned
  • if the content is a div and enter mode!= div then don't clean it
  • if it has some attribute like class or id, then it probably shouldn't be cleaned
Note: See TracTickets for help on using tickets.