зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1343795 - Hold a strong ref on the Selection while calling ScrollIntoView with SCROLL_DO_FLUSH. r=smaug
--HG-- extra : rebase_source : d2bd613d69ac59244818dbe2403e2f7b18deca35
This commit is contained in:
Родитель
89ce732573
Коммит
69a981c64a
|
@ -101,12 +101,15 @@ public:
|
|||
enum {
|
||||
SCROLL_SYNCHRONOUS = 1<<1,
|
||||
SCROLL_FIRST_ANCESTOR_ONLY = 1<<2,
|
||||
SCROLL_DO_FLUSH = 1<<3,
|
||||
SCROLL_DO_FLUSH = 1<<3, // only matters if SCROLL_SYNCHRONOUS is passed too
|
||||
SCROLL_OVERFLOW_HIDDEN = 1<<5,
|
||||
SCROLL_FOR_CARET_MOVE = 1<<6
|
||||
};
|
||||
// aDoFlush only matters if aIsSynchronous is true. If not, we'll just flush
|
||||
// when the scroll event fires so we make sure to scroll to the right place.
|
||||
// If aFlags doesn't contain SCROLL_SYNCHRONOUS, then we'll flush when
|
||||
// the scroll event fires so we make sure to scroll to the right place.
|
||||
// Otherwise, if SCROLL_DO_FLUSH is also in aFlags, then this method will
|
||||
// flush layout and you MUST hold a strong ref on 'this' for the duration
|
||||
// of this call. This might destroy arbitrary layout objects.
|
||||
nsresult ScrollIntoView(SelectionRegion aRegion,
|
||||
nsIPresShell::ScrollAxis aVertical =
|
||||
nsIPresShell::ScrollAxis(),
|
||||
|
|
|
@ -1974,10 +1974,9 @@ nsFrameSelection::ScrollSelectionIntoView(SelectionType aSelectionType,
|
|||
|
||||
// After ScrollSelectionIntoView(), the pending notifications might be
|
||||
// flushed and PresShell/PresContext/Frames may be dead. See bug 418470.
|
||||
return mDomSelections[index]->ScrollIntoView(aRegion,
|
||||
verticalScroll,
|
||||
nsIPresShell::ScrollAxis(),
|
||||
flags);
|
||||
RefPtr<Selection> sel = mDomSelections[index];
|
||||
return sel->ScrollIntoView(aRegion, verticalScroll,
|
||||
nsIPresShell::ScrollAxis(), flags);
|
||||
}
|
||||
|
||||
nsresult
|
||||
|
@ -6171,6 +6170,7 @@ Selection::ScrollSelectionIntoViewEvent::Run()
|
|||
int32_t flags = Selection::SCROLL_DO_FLUSH |
|
||||
Selection::SCROLL_SYNCHRONOUS;
|
||||
|
||||
RefPtr<Selection> kungFuDeathGrip = mSelection;
|
||||
mSelection->mScrollEvent.Forget();
|
||||
mSelection->ScrollIntoView(mRegion, mVerticalScroll,
|
||||
mHorizontalScroll, mFlags | flags);
|
||||
|
|
Загрузка…
Ссылка в новой задаче