You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Switching from mail view to search view and back. Resuming whenever the breakpoint is hit.
Since we don't yet have a way to reliably reproduce the issue, we can make all observers handle events in a requestAnimationFrame. Though we need to keep an eye on reports to make sure the issue no longer occur.
createResizeObserver returns a ResizeObserver that handles resize events
in a `requestAnimationFrame`.
This is done to prevent `ResizeObserver loop completed with undelivered
notifications` errors, which can happen when excessively resizing an
observed element, resulting in resize events being deferred to the next
render cycle.
Close#8517
createResizeObserver returns a ResizeObserver that handles resize events
in a `requestAnimationFrame`.
This is done to prevent `ResizeObserver loop completed with undelivered
notifications` errors, which can happen when excessively resizing an
observed element, resulting in resize events being deferred to the next
render cycle.
Close#8517
Related to #8417
While there was a fix for the Pinch Zoom ResizeObserver, we are still receiving reports (less than before, but still).
We only managed to reproduce it on android using a debugger, specifically by:
src/common/gui/base/List.ts
Since we don't yet have a way to reliably reproduce the issue, we can make all observers handle events in a
requestAnimationFrame
. Though we need to keep an eye on reports to make sure the issue no longer occur.Test notes
The text was updated successfully, but these errors were encountered: