Opened 14 years ago

Closed 13 years ago

Last modified 13 years ago

#6151 closed Bug (worksforme)

Definition Lists Improperly Formatted in IE7

Reported by: Peter Schultheiss Owned by:
Priority: Normal Milestone:
Component: General Version: 3.3.2
Keywords: IE7 Cc:

Description

I have code that looks like this

<dl>

<dt>First</dt> <dd>Second</dd>

</dl>

When I view source in IE7 the <dt> and the <dd> tags are reversed for every <dl> in the source code:

<dl>

<dd>Second</dd> <dt>First</dt>

</dl>

When I view source again it corrects itself. So each time I view source the tags are reveresed.

Change History (3)

comment:1 Changed 14 years ago by Frederico Caldeira Knabben

Keywords: IE7 added; ie7 dl dt dd removed
Status: newconfirmed

Confirmed with IE8 in Compat mode. Works well with IE8 in IE8 mode.

It's fault of the terrible IE DOM, which returns the following innerHTML for the TC:

<DL>
<DT>First
<DD>Second</DD></DL>

comment:2 Changed 13 years ago by Frederico Caldeira Knabben

Resolution: worksforme
Status: confirmedclosed

WFM on turnk. Probably fixed at #6975.

comment:3 Changed 13 years ago by Jennifer

I'm using ckeditor version 3.3.2 and I am experiencing this exact bug. I've followed this thread to #6975 and to the patch listed here: http://dev.ckeditor.com/changeset/6978

However my _source/core/htmlparser/fragment.js is (of course) very different from the one in changeset 6978.

Is there any way to fix this bug within my version of ckeditor or is my only option to upgrade to the newest version?

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