Bug 1421351 - Queue chrome-only scrollend event in refresh driver scroll event queue instead of firing immediately. r=kats

MozReview-Commit-ID: KVQ5kp1t7NW
This commit is contained in:
Mike Conley
2017-11-28 13:09:56 -05:00
parent 20a1c1db85
commit b43ed7f682
2 changed files with 47 additions and 2 deletions

View File

@@ -2107,6 +2107,9 @@ ScrollFrameHelper::~ScrollFrameHelper()
if (mScrollEvent) {
mScrollEvent->Revoke();
}
if (mScrollEndEvent) {
mScrollEndEvent->Revoke();
}
}
/*
@@ -2186,7 +2189,7 @@ ScrollFrameHelper::CompleteAsyncScroll(const nsRect &aRange, nsAtom* aOrigin)
// We are done scrolling, set our destination to wherever we actually ended
// up scrolling to.
mDestination = GetScrollPosition();
FireScrollEndEvent();
PostScrollEndEvent();
}
bool
@@ -4422,10 +4425,25 @@ ScrollFrameHelper::FireScrollPortEvent()
mOuter->PresContext(), &event);
}
void
ScrollFrameHelper::PostScrollEndEvent()
{
if (mScrollEndEvent) {
return;
}
// The ScrollEndEvent constructor registers itself with the refresh driver.
mScrollEndEvent = new ScrollEndEvent(this);
}
void
ScrollFrameHelper::FireScrollEndEvent()
{
MOZ_ASSERT(mOuter->GetContent());
MOZ_ASSERT(mScrollEndEvent);
mScrollEndEvent->Revoke();
mScrollEndEvent = nullptr;
nsContentUtils::DispatchEventOnlyToChrome(mOuter->GetContent()->OwnerDoc(),
mOuter->GetContent(),
NS_LITERAL_STRING("scrollend"),
@@ -4821,6 +4839,22 @@ ScrollFrameHelper::ScrollEvent::Run()
return NS_OK;
}
ScrollFrameHelper::ScrollEndEvent::ScrollEndEvent(ScrollFrameHelper* aHelper)
: Runnable("ScrollFrameHelper::ScrollEndEvent")
, mHelper(aHelper)
{
mHelper->mOuter->PresContext()->RefreshDriver()->PostScrollEvent(this);
}
NS_IMETHODIMP
ScrollFrameHelper::ScrollEndEvent::Run()
{
if (mHelper) {
mHelper->FireScrollEndEvent();
}
return NS_OK;
}
void
ScrollFrameHelper::FireScrollEvent()
{