mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-12-14 02:31:59 +00:00
bug 23994 get the correct child list for a caption frame, r=attinasi
This commit is contained in:
parent
932abefdf3
commit
3d970cf36e
@ -523,12 +523,11 @@ nsMathMLmtableCreator::CreateTableCellInnerFrame(nsIFrame** aNewFrame)
|
||||
nsIAtom* GetChildListFor(const nsIFrame* aFrame)
|
||||
{
|
||||
nsIAtom* childList = nsnull;
|
||||
nsIAtom* frameType;
|
||||
aFrame->GetFrameType(&frameType);
|
||||
if (nsLayoutAtoms::tableCaptionFrame == frameType) {
|
||||
nsCOMPtr<nsIAtom> frameType;
|
||||
aFrame->GetFrameType(getter_AddRefs(frameType));
|
||||
if (nsLayoutAtoms::tableCaptionFrame == frameType.get()) {
|
||||
childList = nsLayoutAtoms::captionList;
|
||||
}
|
||||
NS_IF_RELEASE(frameType);
|
||||
return childList;
|
||||
}
|
||||
|
||||
@ -1343,6 +1342,7 @@ nsCSSFrameConstructor::ConstructTableCaptionFrame(nsIPresShell* aPres
|
||||
PR_FALSE, getter_AddRefs(adjStyleContext));
|
||||
InitAndRestoreFrame(aPresContext, aState, aContent,
|
||||
outerFrame, adjStyleContext, nsnull, aNewCaptionFrame);
|
||||
aState.mFrameManager->SetPrimaryFrameFor(aContent, aNewCaptionFrame);
|
||||
}
|
||||
|
||||
// The caption frame is a floater container
|
||||
@ -5813,7 +5813,7 @@ nsCSSFrameConstructor::AppendFrames(nsIPresContext* aPresContext,
|
||||
else {
|
||||
// Append the frames to the end of the parent's child list
|
||||
rv = aFrameManager->AppendFrames(aPresContext, *aPresShell, aParentFrame,
|
||||
nsnull, aFrameList);
|
||||
GetChildListFor(aFrameList), aFrameList);
|
||||
}
|
||||
NS_IF_RELEASE(parentType);
|
||||
|
||||
|
@ -523,12 +523,11 @@ nsMathMLmtableCreator::CreateTableCellInnerFrame(nsIFrame** aNewFrame)
|
||||
nsIAtom* GetChildListFor(const nsIFrame* aFrame)
|
||||
{
|
||||
nsIAtom* childList = nsnull;
|
||||
nsIAtom* frameType;
|
||||
aFrame->GetFrameType(&frameType);
|
||||
if (nsLayoutAtoms::tableCaptionFrame == frameType) {
|
||||
nsCOMPtr<nsIAtom> frameType;
|
||||
aFrame->GetFrameType(getter_AddRefs(frameType));
|
||||
if (nsLayoutAtoms::tableCaptionFrame == frameType.get()) {
|
||||
childList = nsLayoutAtoms::captionList;
|
||||
}
|
||||
NS_IF_RELEASE(frameType);
|
||||
return childList;
|
||||
}
|
||||
|
||||
@ -1343,6 +1342,7 @@ nsCSSFrameConstructor::ConstructTableCaptionFrame(nsIPresShell* aPres
|
||||
PR_FALSE, getter_AddRefs(adjStyleContext));
|
||||
InitAndRestoreFrame(aPresContext, aState, aContent,
|
||||
outerFrame, adjStyleContext, nsnull, aNewCaptionFrame);
|
||||
aState.mFrameManager->SetPrimaryFrameFor(aContent, aNewCaptionFrame);
|
||||
}
|
||||
|
||||
// The caption frame is a floater container
|
||||
@ -5813,7 +5813,7 @@ nsCSSFrameConstructor::AppendFrames(nsIPresContext* aPresContext,
|
||||
else {
|
||||
// Append the frames to the end of the parent's child list
|
||||
rv = aFrameManager->AppendFrames(aPresContext, *aPresShell, aParentFrame,
|
||||
nsnull, aFrameList);
|
||||
GetChildListFor(aFrameList), aFrameList);
|
||||
}
|
||||
NS_IF_RELEASE(parentType);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user