Opened 12 years ago

Last modified 12 years ago

#8469 confirmed Bug

Id attribute get lost

Reported by: Flavien CROCHARD Owned by:
Priority: Normal Milestone:
Component: General Version: 3.0
Keywords: Cc:

Description

Paste this code in source mode (config.enterMode is set to CKEDITOR.ENTER_BR):

<div id="body">
  foo
</div>

In wysiwyg mode, push enter after foo and click on one of the bullet buttons. Back to source mode, the ul tag is outside the div element.

Expected result :

<div id="body">
  foo
  <ul>
    <li>
      &nbsp;
    </li>
  </ul>
</div>

Actual result :

<div id="body">
  foo
</div>
<ul>
  <li>
    &nbsp;
  </li>
</ul>

Change History (1)

comment:1 Changed 12 years ago by Jakub Ś

Keywords: IE Firefox Chrome removed
Status: newconfirmed
Version: 3.6.3 (SVN - trunk)3.0

I have been able to reproduce it in all browser in all enter modes (not only CKEDITOR.ENTER_BR) from CKEditor 3.0

Note: See TracTickets for help on using tickets.
© 2003 – 2022, CKSource sp. z o.o. sp.k. All rights reserved. | Terms of use | Privacy policy