diff --git a/mozilla/htmlparser/src/nsElementTable.cpp b/mozilla/htmlparser/src/nsElementTable.cpp index 7c61b58b32f..d3deba1ec08 100644 --- a/mozilla/htmlparser/src/nsElementTable.cpp +++ b/mozilla/htmlparser/src/nsElementTable.cpp @@ -2175,19 +2175,22 @@ eHTMLTags nsHTMLElement::GetCloseTargetForEndTag(nsDTDContext& aContext,PRInt32 // Note: we intentionally make 2 passes: // The first pass tries to exactly match, the 2nd pass matches the group. + TagList* theRootTags=gHTMLElements[mTagID].GetEndRootTags(); PRInt32 theIndexCopy=theIndex; while(--theIndex>=anIndex){ eHTMLTags theTag=aContext.TagAt(theIndex); if(theTag == mTagID) { return theTag; // we found our target. } - else if (!CanContain(theTag)) { + else if (!CanContain(theTag) || + (theRootTags && FindTagInSet(theTag,theRootTags->mTags,theRootTags->mCount))) { // If you cannot contain this tag then // you cannot close it either. It looks like // the tag trying to close is misplaced. // In the following Exs. notice the misplaced /font: // Ex. -- Ref. bug 37618. + // Ex. -- Ref. bug 37618 + // Ex. -- Ref. bug 98187 return eHTMLTag_unknown; } } diff --git a/mozilla/parser/htmlparser/src/nsElementTable.cpp b/mozilla/parser/htmlparser/src/nsElementTable.cpp index 7c61b58b32f..d3deba1ec08 100644 --- a/mozilla/parser/htmlparser/src/nsElementTable.cpp +++ b/mozilla/parser/htmlparser/src/nsElementTable.cpp @@ -2175,19 +2175,22 @@ eHTMLTags nsHTMLElement::GetCloseTargetForEndTag(nsDTDContext& aContext,PRInt32 // Note: we intentionally make 2 passes: // The first pass tries to exactly match, the 2nd pass matches the group. + TagList* theRootTags=gHTMLElements[mTagID].GetEndRootTags(); PRInt32 theIndexCopy=theIndex; while(--theIndex>=anIndex){ eHTMLTags theTag=aContext.TagAt(theIndex); if(theTag == mTagID) { return theTag; // we found our target. } - else if (!CanContain(theTag)) { + else if (!CanContain(theTag) || + (theRootTags && FindTagInSet(theTag,theRootTags->mTags,theRootTags->mCount))) { // If you cannot contain this tag then // you cannot close it either. It looks like // the tag trying to close is misplaced. // In the following Exs. notice the misplaced /font: // Ex.
-- Ref. bug 37618. + // Ex. -- Ref. bug 37618 + // Ex. -- Ref. bug 98187 return eHTMLTag_unknown; } }