diff options
author | Moonchild <moonchild@palemoon.org> | 2020-09-16 19:39:33 +0000 |
---|---|---|
committer | Moonchild <moonchild@palemoon.org> | 2020-09-21 11:04:31 +0000 |
commit | 075fa012868017c9cb49f1b92960bf02f4bf27ca (patch) | |
tree | bce03e7900f790b896f889c24a51814a4ade828d /layout/base/nsPresShell.cpp | |
parent | 32e0d2ca2369d4ee0658affde0e96bdf0f84455a (diff) | |
download | UXP-075fa012868017c9cb49f1b92960bf02f4bf27ca.tar UXP-075fa012868017c9cb49f1b92960bf02f4bf27ca.tar.gz UXP-075fa012868017c9cb49f1b92960bf02f4bf27ca.tar.lz UXP-075fa012868017c9cb49f1b92960bf02f4bf27ca.tar.xz UXP-075fa012868017c9cb49f1b92960bf02f4bf27ca.zip |
Issue #1643 - Part 4: Hook up all the plumbing.
Diffstat (limited to 'layout/base/nsPresShell.cpp')
-rw-r--r-- | layout/base/nsPresShell.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/layout/base/nsPresShell.cpp b/layout/base/nsPresShell.cpp index 63f512af4..0544a69a4 100644 --- a/layout/base/nsPresShell.cpp +++ b/layout/base/nsPresShell.cpp @@ -9090,6 +9090,11 @@ PresShell::DidDoReflow(bool aInterruptible) docShell->NotifyReflowObservers(aInterruptible, mLastReflowStart, now); } + // Notify resize observers on reflow. + if (!mPresContext->HasPendingInterrupt()) { + mDocument->ScheduleResizeObserversNotification(); + } + if (sSynthMouseMove) { SynthesizeMouseMove(false); } |