зеркало из https://github.com/mozilla/pjs.git
Clean up FindFrameWithContent. No need to search children of special frames too (hang bug 140275). Use special sibling when next-in-flow isn't available, and use the hint even when we have special frames. Convert gotos into additional while loop. Turn useless :after check into assertion. Don't modify aParentFrame and aParentContent for when the hint fails. b=140275 r=attinasi sr=waterson
This commit is contained in:
Родитель
a2dc0c286f
Коммит
015b68bde1
|
@ -3204,15 +3204,6 @@ nsCSSFrameConstructor::ConstructDocElementTableFrame(nsIPresShell* aPresS
|
|||
return NS_OK;
|
||||
}
|
||||
|
||||
static PRBool
|
||||
IsCanvasFrame(nsIFrame* aFrame)
|
||||
{
|
||||
nsCOMPtr<nsIAtom> parentType;
|
||||
|
||||
aFrame->GetFrameType(getter_AddRefs(parentType));
|
||||
return parentType.get() == nsLayoutAtoms::canvasFrame;
|
||||
}
|
||||
|
||||
/**
|
||||
* New one
|
||||
*/
|
||||
|
@ -11748,11 +11739,27 @@ nsCSSFrameConstructor::CreateContinuingFrame(nsIPresShell* aPresShell,
|
|||
return rv;
|
||||
}
|
||||
|
||||
// Get the frame's next-in-flow, or, if it doesn't have one,
|
||||
// its special sibling.
|
||||
static nsIFrame*
|
||||
GetNifOrSpecialSibling(nsIFrameManager *aFrameManager, nsIFrame *aFrame)
|
||||
{
|
||||
nsIFrame *result;
|
||||
aFrame->GetNextInFlow(&result);
|
||||
if (result)
|
||||
return result;
|
||||
|
||||
if (IsFrameSpecial(aFrame))
|
||||
GetSpecialSibling(aFrameManager, aFrame, &result);
|
||||
return result;
|
||||
}
|
||||
|
||||
// Helper function that searches the immediate child frames
|
||||
// (and their children if the frames are "special")
|
||||
// for a frame that maps the specified content object
|
||||
nsIFrame*
|
||||
nsCSSFrameConstructor::FindFrameWithContent(nsIPresContext* aPresContext,
|
||||
nsIFrameManager* aFrameManager,
|
||||
nsIFrame* aParentFrame,
|
||||
nsIContent* aParentContent,
|
||||
nsIContent* aContent,
|
||||
|
@ -11765,17 +11772,9 @@ nsCSSFrameConstructor::FindFrameWithContent(nsIPresContext* aPresContext,
|
|||
aContent, aParentFrame, aParentContent, aHint ? "set" : "NULL");
|
||||
#endif
|
||||
|
||||
NS_PRECONDITION(aParentFrame, "No frame to search!");
|
||||
if (!aParentFrame) {
|
||||
return nsnull;
|
||||
}
|
||||
NS_ENSURE_TRUE(aParentFrame != nsnull, nsnull);
|
||||
|
||||
nsCOMPtr<nsIContent> parentContent = aParentContent; // because we might change this when using the hint
|
||||
|
||||
PRBool firstTime = PR_TRUE; // marker to let us know to only use aHint the very first time through
|
||||
// must be declared outside loop and above goto label "keepLooking"
|
||||
|
||||
keepLooking:
|
||||
do {
|
||||
// Search for the frame in each child list that aParentFrame supports
|
||||
nsIAtom* listName = nsnull;
|
||||
PRInt32 listIndex = 0;
|
||||
|
@ -11784,10 +11783,9 @@ keepLooking:
|
|||
FFWC_doLoop++;
|
||||
#endif
|
||||
nsIFrame* kidFrame=nsnull;
|
||||
if (aHint && firstTime)
|
||||
{ // if we were given an hint, try to use it here, unless the parent frame is special
|
||||
if (!IsFrameSpecial(aParentFrame))
|
||||
{
|
||||
// if we were given an hint, try to use it here to find a good
|
||||
// previous frame to start our search (|kidFrame|).
|
||||
if (aHint) {
|
||||
#ifdef NOISY_FINDFRAME
|
||||
printf(" hint frame is %p\n", aHint->mPrimaryFrameForPrevSibling);
|
||||
#endif
|
||||
|
@ -11800,28 +11798,26 @@ keepLooking:
|
|||
nsIFrame *parentFrame=nsnull;
|
||||
aHint->mPrimaryFrameForPrevSibling->GetParent(&parentFrame);
|
||||
if (parentFrame) {
|
||||
parentFrame->GetNextInFlow(&parentFrame);
|
||||
parentFrame = GetNifOrSpecialSibling(aFrameManager, parentFrame);
|
||||
}
|
||||
if (parentFrame)
|
||||
{ // if we found the next-in-flow for the parent of the hint frame, start with it's first child
|
||||
parentFrame->FirstChild(aPresContext, listName, &kidFrame);
|
||||
if (kidFrame)
|
||||
{
|
||||
aParentFrame = parentFrame; // if we found a match, make this the new starting point
|
||||
aParentFrame->GetContent(getter_AddRefs(parentContent));
|
||||
// Leave |aParentFrame| as-is, since the only time we'll
|
||||
// reuse it is if the hint fails.
|
||||
#ifdef DEBUG
|
||||
if (kidFrame) {
|
||||
nsCOMPtr<nsIContent> parentContent;
|
||||
parentFrame->GetContent(getter_AddRefs(parentContent));
|
||||
NS_ASSERTION(parentContent == aParentContent,
|
||||
"next-in-flow has different content");
|
||||
}
|
||||
#endif
|
||||
}
|
||||
}
|
||||
#ifdef NOISY_FINDFRAME
|
||||
printf(" hint gives us kidFrame=%p with parent frame %p content %p\n",
|
||||
kidFrame, aParentFrame, parentContent);
|
||||
#endif
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
#ifdef NOISY_FINDFRAME
|
||||
printf("skipping hint because parent frame is special\n");
|
||||
kidFrame, aParentFrame, aParentContent);
|
||||
#endif
|
||||
}
|
||||
}
|
||||
|
@ -11834,7 +11830,7 @@ keepLooking:
|
|||
// See if the child frame points to the content object we're
|
||||
// looking for
|
||||
kidFrame->GetContent(getter_AddRefs(kidContent));
|
||||
if (kidContent.get() == aContent) {
|
||||
if (kidContent == aContent) {
|
||||
nsCOMPtr<nsIAtom> frameType;
|
||||
|
||||
// We found a match. See if it's a placeholder frame
|
||||
|
@ -11850,20 +11846,22 @@ keepLooking:
|
|||
|
||||
if (aContent->IsContentOfType(nsIContent::eELEMENT) &&
|
||||
IsGeneratedContentFor(aContent, kidFrame, nsCSSAtoms::beforePseudo)) {
|
||||
nsIFrame *nextSibling = nsnull;
|
||||
|
||||
kidFrame->GetNextSibling(&nextSibling);
|
||||
if (nextSibling) {
|
||||
kidFrame->GetNextSibling(&kidFrame);
|
||||
#ifdef DEBUG
|
||||
NS_ASSERTION(kidFrame, ":before with no next sibling");
|
||||
if (kidFrame) {
|
||||
nsCOMPtr<nsIContent> nextSiblingContent;
|
||||
nextSibling->GetContent(getter_AddRefs(nextSiblingContent));
|
||||
kidFrame->GetContent(getter_AddRefs(nextSiblingContent));
|
||||
|
||||
// Make sure the content matches, and because I'm paranoid,
|
||||
// make sure it's not the :after pseudo frame.
|
||||
|
||||
if (nextSiblingContent.get() == aContent &&
|
||||
!IsGeneratedContentFor(aContent, nextSibling, nsCSSAtoms::afterPseudo))
|
||||
kidFrame = nextSibling;
|
||||
NS_ASSERTION(nextSiblingContent.get() == aContent &&
|
||||
!IsGeneratedContentFor(aContent, kidFrame,
|
||||
nsCSSAtoms::afterPseudo),
|
||||
":before frame not followed by primary frame");
|
||||
}
|
||||
#endif
|
||||
}
|
||||
|
||||
// Return the matching child frame
|
||||
|
@ -11876,22 +11874,21 @@ keepLooking:
|
|||
// We search the immediate children only, but if the child frame has
|
||||
// the same content pointer as its parent then we need to search its
|
||||
// child frames, too.
|
||||
// We also need to search the child frame's children if the child frame
|
||||
// is a "special" frame
|
||||
// We also need to search if the child content is anonymous and scoped
|
||||
// to the parent content.
|
||||
nsCOMPtr<nsIContent> parentScope;
|
||||
kidContent->GetBindingParent(getter_AddRefs(parentScope));
|
||||
if (parentContent == kidContent || IsFrameSpecial(kidFrame) ||
|
||||
(parentContent && (parentContent == parentScope)))
|
||||
if (aParentContent == kidContent ||
|
||||
(aParentContent && (aParentContent == parentScope)))
|
||||
{
|
||||
#ifdef NOISY_FINDFRAME
|
||||
FFWC_recursions++;
|
||||
printf(" recursing with new parent set to kidframe=%p, parentContent=%p\n",
|
||||
kidFrame, parentContent.get());
|
||||
kidFrame, aParentContent.get());
|
||||
#endif
|
||||
nsIFrame* matchingFrame = FindFrameWithContent(aPresContext, kidFrame, parentContent,
|
||||
aContent, nsnull);
|
||||
nsIFrame* matchingFrame =
|
||||
FindFrameWithContent(aPresContext, aFrameManager, kidFrame,
|
||||
aParentContent, aContent, nsnull);
|
||||
|
||||
if (matchingFrame) {
|
||||
return matchingFrame;
|
||||
|
@ -11909,32 +11906,30 @@ keepLooking:
|
|||
#endif
|
||||
}
|
||||
|
||||
if (firstTime) {
|
||||
firstTime = PR_FALSE;
|
||||
|
||||
if (aHint) {
|
||||
// If we get here, and we had a hint, then we didn't find a
|
||||
// frame. The hint may have been a floated or absolutely
|
||||
// positioned frame, in which case we'd be off in the weeds
|
||||
// looking through something other than primary frame
|
||||
// list. Reboot the search from scratch.
|
||||
if (aHint)
|
||||
goto keepLooking;
|
||||
}
|
||||
|
||||
// list. Reboot the search from scratch, without the hint, but
|
||||
// using the null child list again.
|
||||
aHint = nsnull;
|
||||
} else {
|
||||
NS_IF_RELEASE(listName);
|
||||
aParentFrame->GetAdditionalChildListName(listIndex++, &listName);
|
||||
}
|
||||
} while(listName);
|
||||
|
||||
// We didn't find a matching frame. If aFrame has a next-in-flow,
|
||||
// then continue looking there
|
||||
aParentFrame->GetNextInFlow(&aParentFrame);
|
||||
if (aParentFrame) {
|
||||
aParentFrame = GetNifOrSpecialSibling(aFrameManager, aParentFrame);
|
||||
#ifdef NOISY_FINDFRAME
|
||||
if (aParentFrame) {
|
||||
FFWC_nextInFlows++;
|
||||
printf(" searching NIF frame %p\n", aParentFrame);
|
||||
#endif
|
||||
goto keepLooking;
|
||||
}
|
||||
#endif
|
||||
} while (aParentFrame);
|
||||
|
||||
// No matching frame
|
||||
return nsnull;
|
||||
|
@ -11978,7 +11973,8 @@ nsCSSFrameConstructor::FindPrimaryFrameFor(nsIPresContext* aPresContext,
|
|||
aFrameManager->GetPrimaryFrameFor(parentContent, &parentFrame);
|
||||
while (parentFrame) {
|
||||
// Search the child frames for a match
|
||||
*aFrame = FindFrameWithContent(aPresContext, parentFrame, parentContent.get(), aContent, aHint);
|
||||
*aFrame = FindFrameWithContent(aPresContext, aFrameManager, parentFrame,
|
||||
parentContent.get(), aContent, aHint);
|
||||
#ifdef NOISY_FINDFRAME
|
||||
printf("FindFrameWithContent returned %p\n", *aFrame);
|
||||
#endif
|
||||
|
@ -11993,7 +11989,9 @@ nsCSSFrameConstructor::FindPrimaryFrameFor(nsIPresContext* aPresContext,
|
|||
#ifdef NOISY_FINDFRAME
|
||||
printf("VERIFYING...\n");
|
||||
#endif
|
||||
nsIFrame *verifyTestFrame = FindFrameWithContent(aPresContext, parentFrame, parentContent.get(), aContent, nsnull);
|
||||
nsIFrame *verifyTestFrame =
|
||||
FindFrameWithContent(aPresContext, aFrameManager, parentFrame,
|
||||
parentContent.get(), aContent, nsnull);
|
||||
#ifdef NOISY_FINDFRAME
|
||||
printf("VERIFY returned %p\n", verifyTestFrame);
|
||||
#endif
|
||||
|
@ -14334,7 +14332,8 @@ nsCSSFrameConstructor::ReframeContainingBlock(nsIPresContext* aPresContext, nsIF
|
|||
#ifdef DEBUG
|
||||
if (gNoisyContentUpdates) {
|
||||
printf(" ==> blockContent=%p, parentContainer=%p\n",
|
||||
blockContent.get(), parentContainer.get());
|
||||
NS_STATIC_CAST(void*, blockContent),
|
||||
NS_STATIC_CAST(void*, parentContainer));
|
||||
}
|
||||
#endif
|
||||
PRInt32 ix;
|
||||
|
|
|
@ -901,6 +901,7 @@ protected:
|
|||
* @param aHint an optional hint used to make the search for aFrame faster
|
||||
*/
|
||||
nsIFrame* FindFrameWithContent(nsIPresContext* aPresContext,
|
||||
nsIFrameManager* aFrameManager,
|
||||
nsIFrame* aParentFrame,
|
||||
nsIContent* aParentContent,
|
||||
nsIContent* aContent,
|
||||
|
|
|
@ -3204,15 +3204,6 @@ nsCSSFrameConstructor::ConstructDocElementTableFrame(nsIPresShell* aPresS
|
|||
return NS_OK;
|
||||
}
|
||||
|
||||
static PRBool
|
||||
IsCanvasFrame(nsIFrame* aFrame)
|
||||
{
|
||||
nsCOMPtr<nsIAtom> parentType;
|
||||
|
||||
aFrame->GetFrameType(getter_AddRefs(parentType));
|
||||
return parentType.get() == nsLayoutAtoms::canvasFrame;
|
||||
}
|
||||
|
||||
/**
|
||||
* New one
|
||||
*/
|
||||
|
@ -11748,11 +11739,27 @@ nsCSSFrameConstructor::CreateContinuingFrame(nsIPresShell* aPresShell,
|
|||
return rv;
|
||||
}
|
||||
|
||||
// Get the frame's next-in-flow, or, if it doesn't have one,
|
||||
// its special sibling.
|
||||
static nsIFrame*
|
||||
GetNifOrSpecialSibling(nsIFrameManager *aFrameManager, nsIFrame *aFrame)
|
||||
{
|
||||
nsIFrame *result;
|
||||
aFrame->GetNextInFlow(&result);
|
||||
if (result)
|
||||
return result;
|
||||
|
||||
if (IsFrameSpecial(aFrame))
|
||||
GetSpecialSibling(aFrameManager, aFrame, &result);
|
||||
return result;
|
||||
}
|
||||
|
||||
// Helper function that searches the immediate child frames
|
||||
// (and their children if the frames are "special")
|
||||
// for a frame that maps the specified content object
|
||||
nsIFrame*
|
||||
nsCSSFrameConstructor::FindFrameWithContent(nsIPresContext* aPresContext,
|
||||
nsIFrameManager* aFrameManager,
|
||||
nsIFrame* aParentFrame,
|
||||
nsIContent* aParentContent,
|
||||
nsIContent* aContent,
|
||||
|
@ -11765,17 +11772,9 @@ nsCSSFrameConstructor::FindFrameWithContent(nsIPresContext* aPresContext,
|
|||
aContent, aParentFrame, aParentContent, aHint ? "set" : "NULL");
|
||||
#endif
|
||||
|
||||
NS_PRECONDITION(aParentFrame, "No frame to search!");
|
||||
if (!aParentFrame) {
|
||||
return nsnull;
|
||||
}
|
||||
NS_ENSURE_TRUE(aParentFrame != nsnull, nsnull);
|
||||
|
||||
nsCOMPtr<nsIContent> parentContent = aParentContent; // because we might change this when using the hint
|
||||
|
||||
PRBool firstTime = PR_TRUE; // marker to let us know to only use aHint the very first time through
|
||||
// must be declared outside loop and above goto label "keepLooking"
|
||||
|
||||
keepLooking:
|
||||
do {
|
||||
// Search for the frame in each child list that aParentFrame supports
|
||||
nsIAtom* listName = nsnull;
|
||||
PRInt32 listIndex = 0;
|
||||
|
@ -11784,10 +11783,9 @@ keepLooking:
|
|||
FFWC_doLoop++;
|
||||
#endif
|
||||
nsIFrame* kidFrame=nsnull;
|
||||
if (aHint && firstTime)
|
||||
{ // if we were given an hint, try to use it here, unless the parent frame is special
|
||||
if (!IsFrameSpecial(aParentFrame))
|
||||
{
|
||||
// if we were given an hint, try to use it here to find a good
|
||||
// previous frame to start our search (|kidFrame|).
|
||||
if (aHint) {
|
||||
#ifdef NOISY_FINDFRAME
|
||||
printf(" hint frame is %p\n", aHint->mPrimaryFrameForPrevSibling);
|
||||
#endif
|
||||
|
@ -11800,28 +11798,26 @@ keepLooking:
|
|||
nsIFrame *parentFrame=nsnull;
|
||||
aHint->mPrimaryFrameForPrevSibling->GetParent(&parentFrame);
|
||||
if (parentFrame) {
|
||||
parentFrame->GetNextInFlow(&parentFrame);
|
||||
parentFrame = GetNifOrSpecialSibling(aFrameManager, parentFrame);
|
||||
}
|
||||
if (parentFrame)
|
||||
{ // if we found the next-in-flow for the parent of the hint frame, start with it's first child
|
||||
parentFrame->FirstChild(aPresContext, listName, &kidFrame);
|
||||
if (kidFrame)
|
||||
{
|
||||
aParentFrame = parentFrame; // if we found a match, make this the new starting point
|
||||
aParentFrame->GetContent(getter_AddRefs(parentContent));
|
||||
// Leave |aParentFrame| as-is, since the only time we'll
|
||||
// reuse it is if the hint fails.
|
||||
#ifdef DEBUG
|
||||
if (kidFrame) {
|
||||
nsCOMPtr<nsIContent> parentContent;
|
||||
parentFrame->GetContent(getter_AddRefs(parentContent));
|
||||
NS_ASSERTION(parentContent == aParentContent,
|
||||
"next-in-flow has different content");
|
||||
}
|
||||
#endif
|
||||
}
|
||||
}
|
||||
#ifdef NOISY_FINDFRAME
|
||||
printf(" hint gives us kidFrame=%p with parent frame %p content %p\n",
|
||||
kidFrame, aParentFrame, parentContent);
|
||||
#endif
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
#ifdef NOISY_FINDFRAME
|
||||
printf("skipping hint because parent frame is special\n");
|
||||
kidFrame, aParentFrame, aParentContent);
|
||||
#endif
|
||||
}
|
||||
}
|
||||
|
@ -11834,7 +11830,7 @@ keepLooking:
|
|||
// See if the child frame points to the content object we're
|
||||
// looking for
|
||||
kidFrame->GetContent(getter_AddRefs(kidContent));
|
||||
if (kidContent.get() == aContent) {
|
||||
if (kidContent == aContent) {
|
||||
nsCOMPtr<nsIAtom> frameType;
|
||||
|
||||
// We found a match. See if it's a placeholder frame
|
||||
|
@ -11850,20 +11846,22 @@ keepLooking:
|
|||
|
||||
if (aContent->IsContentOfType(nsIContent::eELEMENT) &&
|
||||
IsGeneratedContentFor(aContent, kidFrame, nsCSSAtoms::beforePseudo)) {
|
||||
nsIFrame *nextSibling = nsnull;
|
||||
|
||||
kidFrame->GetNextSibling(&nextSibling);
|
||||
if (nextSibling) {
|
||||
kidFrame->GetNextSibling(&kidFrame);
|
||||
#ifdef DEBUG
|
||||
NS_ASSERTION(kidFrame, ":before with no next sibling");
|
||||
if (kidFrame) {
|
||||
nsCOMPtr<nsIContent> nextSiblingContent;
|
||||
nextSibling->GetContent(getter_AddRefs(nextSiblingContent));
|
||||
kidFrame->GetContent(getter_AddRefs(nextSiblingContent));
|
||||
|
||||
// Make sure the content matches, and because I'm paranoid,
|
||||
// make sure it's not the :after pseudo frame.
|
||||
|
||||
if (nextSiblingContent.get() == aContent &&
|
||||
!IsGeneratedContentFor(aContent, nextSibling, nsCSSAtoms::afterPseudo))
|
||||
kidFrame = nextSibling;
|
||||
NS_ASSERTION(nextSiblingContent.get() == aContent &&
|
||||
!IsGeneratedContentFor(aContent, kidFrame,
|
||||
nsCSSAtoms::afterPseudo),
|
||||
":before frame not followed by primary frame");
|
||||
}
|
||||
#endif
|
||||
}
|
||||
|
||||
// Return the matching child frame
|
||||
|
@ -11876,22 +11874,21 @@ keepLooking:
|
|||
// We search the immediate children only, but if the child frame has
|
||||
// the same content pointer as its parent then we need to search its
|
||||
// child frames, too.
|
||||
// We also need to search the child frame's children if the child frame
|
||||
// is a "special" frame
|
||||
// We also need to search if the child content is anonymous and scoped
|
||||
// to the parent content.
|
||||
nsCOMPtr<nsIContent> parentScope;
|
||||
kidContent->GetBindingParent(getter_AddRefs(parentScope));
|
||||
if (parentContent == kidContent || IsFrameSpecial(kidFrame) ||
|
||||
(parentContent && (parentContent == parentScope)))
|
||||
if (aParentContent == kidContent ||
|
||||
(aParentContent && (aParentContent == parentScope)))
|
||||
{
|
||||
#ifdef NOISY_FINDFRAME
|
||||
FFWC_recursions++;
|
||||
printf(" recursing with new parent set to kidframe=%p, parentContent=%p\n",
|
||||
kidFrame, parentContent.get());
|
||||
kidFrame, aParentContent.get());
|
||||
#endif
|
||||
nsIFrame* matchingFrame = FindFrameWithContent(aPresContext, kidFrame, parentContent,
|
||||
aContent, nsnull);
|
||||
nsIFrame* matchingFrame =
|
||||
FindFrameWithContent(aPresContext, aFrameManager, kidFrame,
|
||||
aParentContent, aContent, nsnull);
|
||||
|
||||
if (matchingFrame) {
|
||||
return matchingFrame;
|
||||
|
@ -11909,32 +11906,30 @@ keepLooking:
|
|||
#endif
|
||||
}
|
||||
|
||||
if (firstTime) {
|
||||
firstTime = PR_FALSE;
|
||||
|
||||
if (aHint) {
|
||||
// If we get here, and we had a hint, then we didn't find a
|
||||
// frame. The hint may have been a floated or absolutely
|
||||
// positioned frame, in which case we'd be off in the weeds
|
||||
// looking through something other than primary frame
|
||||
// list. Reboot the search from scratch.
|
||||
if (aHint)
|
||||
goto keepLooking;
|
||||
}
|
||||
|
||||
// list. Reboot the search from scratch, without the hint, but
|
||||
// using the null child list again.
|
||||
aHint = nsnull;
|
||||
} else {
|
||||
NS_IF_RELEASE(listName);
|
||||
aParentFrame->GetAdditionalChildListName(listIndex++, &listName);
|
||||
}
|
||||
} while(listName);
|
||||
|
||||
// We didn't find a matching frame. If aFrame has a next-in-flow,
|
||||
// then continue looking there
|
||||
aParentFrame->GetNextInFlow(&aParentFrame);
|
||||
if (aParentFrame) {
|
||||
aParentFrame = GetNifOrSpecialSibling(aFrameManager, aParentFrame);
|
||||
#ifdef NOISY_FINDFRAME
|
||||
if (aParentFrame) {
|
||||
FFWC_nextInFlows++;
|
||||
printf(" searching NIF frame %p\n", aParentFrame);
|
||||
#endif
|
||||
goto keepLooking;
|
||||
}
|
||||
#endif
|
||||
} while (aParentFrame);
|
||||
|
||||
// No matching frame
|
||||
return nsnull;
|
||||
|
@ -11978,7 +11973,8 @@ nsCSSFrameConstructor::FindPrimaryFrameFor(nsIPresContext* aPresContext,
|
|||
aFrameManager->GetPrimaryFrameFor(parentContent, &parentFrame);
|
||||
while (parentFrame) {
|
||||
// Search the child frames for a match
|
||||
*aFrame = FindFrameWithContent(aPresContext, parentFrame, parentContent.get(), aContent, aHint);
|
||||
*aFrame = FindFrameWithContent(aPresContext, aFrameManager, parentFrame,
|
||||
parentContent.get(), aContent, aHint);
|
||||
#ifdef NOISY_FINDFRAME
|
||||
printf("FindFrameWithContent returned %p\n", *aFrame);
|
||||
#endif
|
||||
|
@ -11993,7 +11989,9 @@ nsCSSFrameConstructor::FindPrimaryFrameFor(nsIPresContext* aPresContext,
|
|||
#ifdef NOISY_FINDFRAME
|
||||
printf("VERIFYING...\n");
|
||||
#endif
|
||||
nsIFrame *verifyTestFrame = FindFrameWithContent(aPresContext, parentFrame, parentContent.get(), aContent, nsnull);
|
||||
nsIFrame *verifyTestFrame =
|
||||
FindFrameWithContent(aPresContext, aFrameManager, parentFrame,
|
||||
parentContent.get(), aContent, nsnull);
|
||||
#ifdef NOISY_FINDFRAME
|
||||
printf("VERIFY returned %p\n", verifyTestFrame);
|
||||
#endif
|
||||
|
@ -14334,7 +14332,8 @@ nsCSSFrameConstructor::ReframeContainingBlock(nsIPresContext* aPresContext, nsIF
|
|||
#ifdef DEBUG
|
||||
if (gNoisyContentUpdates) {
|
||||
printf(" ==> blockContent=%p, parentContainer=%p\n",
|
||||
blockContent.get(), parentContainer.get());
|
||||
NS_STATIC_CAST(void*, blockContent),
|
||||
NS_STATIC_CAST(void*, parentContainer));
|
||||
}
|
||||
#endif
|
||||
PRInt32 ix;
|
||||
|
|
|
@ -901,6 +901,7 @@ protected:
|
|||
* @param aHint an optional hint used to make the search for aFrame faster
|
||||
*/
|
||||
nsIFrame* FindFrameWithContent(nsIPresContext* aPresContext,
|
||||
nsIFrameManager* aFrameManager,
|
||||
nsIFrame* aParentFrame,
|
||||
nsIContent* aParentContent,
|
||||
nsIContent* aContent,
|
||||
|
|
Загрузка…
Ссылка в новой задаче