mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-04-03 04:52:54 +00:00
Make sure to flush reflows before trying to scroll so that frame coordinates
will be up-to-date. Bug 186149, r=peterv, sr=jst, a=asa
This commit is contained in:
parent
0b19a3bbf0
commit
04d9b57f42
@ -1283,6 +1283,9 @@ nsGenericHTMLElement::ScrollIntoView(PRBool aTop)
|
||||
return NS_OK;
|
||||
}
|
||||
|
||||
// Now flush to make sure things are up to date
|
||||
presShell->FlushPendingNotifications(PR_FALSE);
|
||||
|
||||
// Get the primary frame for this element
|
||||
nsIFrame *frame = nsnull;
|
||||
presShell->GetPrimaryFrameFor(this, &frame);
|
||||
|
@ -4118,6 +4118,9 @@ PresShell::GoToAnchor(const nsAString& aAnchorName, PRBool aScroll)
|
||||
}
|
||||
|
||||
if (content) {
|
||||
// Flush notifications so we scroll to the right place
|
||||
FlushPendingNotifications(PR_FALSE);
|
||||
|
||||
// Get the primary frame
|
||||
nsIFrame* frame = nsnull;
|
||||
if (aScroll &&
|
||||
|
@ -4118,6 +4118,9 @@ PresShell::GoToAnchor(const nsAString& aAnchorName, PRBool aScroll)
|
||||
}
|
||||
|
||||
if (content) {
|
||||
// Flush notifications so we scroll to the right place
|
||||
FlushPendingNotifications(PR_FALSE);
|
||||
|
||||
// Get the primary frame
|
||||
nsIFrame* frame = nsnull;
|
||||
if (aScroll &&
|
||||
|
Loading…
x
Reference in New Issue
Block a user