Opened 16 years ago

Closed 15 years ago

#2347 closed Bug (fixed)

IE: The "id" attribute of <hr> elements get lost

Reported by: Frederico Caldeira Knabben Owned by:
Priority: Normal Milestone:
Component: General Version: SVN (FCKeditor) - Retired
Keywords: Confirmed IE Cc:

Description

Pasting the following code in the source:

<hr id="test" />

Switching to WYSIWYG and back to source gives us:

<hr />

Confirmed with IE. Ok with Firefox.

Change History (2)

comment:1 Changed 15 years ago by Phil Makower

for v2.6.2, changed fckdocumentprocessor.js line 215 from

newHR.mergeAttributes( eHR, true ) ;

to

newHR.mergeAttributes( eHR, true ) if(eHR.id) {

newHR.id = eHR.id;

}

comment:2 Changed 15 years ago by Artur Formella

Resolution: fixed
Status: newclosed

Works fine in 3.0 RC

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