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
We need to support a case when scrollable content contains autoadjustable images that lead to race condition when scrollbar appears and then hides.
When content height is greater than available height scrollbar appears - expected behavior.
When scrollbar appears available content width is reduced by the width of scrollbar.
When content width is reduced attached image width is also reduced.
Because image width is reduced and image proprotions are preserved image height is also reduced.
When image height and width are reduced, content height is reduced and then it fits into available height - so scrollbar should be hidden.
Hiding scrollbar increases available width which leads to increasing image height and so on - race condition.
Native chrome behavior is to check new height in background with added scrollbar and compare with current. We need to research same mechanism of height checking.
The text was updated successfully, but these errors were encountered:
We need to support a case when scrollable content contains autoadjustable images that lead to race condition when scrollbar appears and then hides.
Native chrome behavior is to check new height in background with added scrollbar and compare with current. We need to research same mechanism of height checking.
The text was updated successfully, but these errors were encountered: