Changeset 219320 in webkit
- Timestamp:
- Jul 10, 2017, 8:40:59 PM (8 years ago)
- Location:
- trunk
- Files:
-
- 2 added
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LayoutTests/ChangeLog
r219319 r219320 1 2017-07-10 Simon Fraser <simon.fraser@apple.com> 2 3 [WK2 iOS] REGRESSION (r216803) During momentum scroll, getBoundingClientRect returns wrong coordinates (missing images on pinterest, elle.com and many other sites) 4 https://bugs.webkit.org/show_bug.cgi?id=174286 5 rdar://problem/32864180 6 7 Reviewed by Dean Jackson. 8 9 * fast/visual-viewport/ios/get-bounding-client-rect-unstable-expected.txt: Added. 10 * fast/visual-viewport/ios/get-bounding-client-rect-unstable.html: Added. 11 1 12 2017-07-10 John Wilander <wilander@apple.com> 2 13 -
trunk/Source/WebCore/ChangeLog
r219319 r219320 1 2017-07-10 Simon Fraser <simon.fraser@apple.com> 2 3 [WK2 iOS] REGRESSION (r216803) During momentum scroll, getBoundingClientRect returns wrong coordinates (missing images on pinterest, elle.com and many other sites) 4 https://bugs.webkit.org/show_bug.cgi?id=174286 5 rdar://problem/32864180 6 7 Reviewed by Dean Jackson. 8 9 r216803 made getBoundingClientRects relative to the layout viewport, but when scrolling we 10 only update that on stable viewport updates (at the end of the scroll). This meant that during 11 unstable updates, getBoundingClientRects() used a "frozen" viewport origin so things on-screen 12 would appear to be off-screen, causing sites to fail to dynamically load images etc. when 13 scrolling. 14 15 Fix by pushing an optional "unstable" layout viewport rect onto FrameView, which gets used by 16 FrameView::documentToClientOffset(). This is cleared when we do a stable update. 17 18 This is a short-term solution. Longer term, I would prefer to always call setLayoutViewportOverrideRect(), 19 but fix the scrolling tree logic to work correctly in this case. 20 21 Add a bit more scrolling logging. 22 23 Test: fast/visual-viewport/ios/get-bounding-client-rect-unstable.html 24 25 * page/FrameView.cpp: 26 (WebCore::FrameView::setUnstableLayoutViewportRect): 27 (WebCore::FrameView::documentToClientOffset): 28 * page/FrameView.h: 29 * page/scrolling/AsyncScrollingCoordinator.cpp: 30 (WebCore::AsyncScrollingCoordinator::reconcileScrollingState): 31 * page/scrolling/ScrollingStateFixedNode.cpp: 32 (WebCore::ScrollingStateFixedNode::updateConstraints): 33 (WebCore::ScrollingStateFixedNode::reconcileLayerPositionForViewportRect): 34 1 35 2017-07-10 John Wilander <wilander@apple.com> 2 36 -
trunk/Source/WebCore/page/FrameView.cpp
r219121 r219320 1919 1919 } 1920 1920 1921 void FrameView::setUnstableLayoutViewportRect(std::optional<LayoutRect> rect) 1922 { 1923 if (rect == m_unstableLayoutViewportRect) 1924 return; 1925 1926 m_unstableLayoutViewportRect = rect; 1927 } 1928 1921 1929 LayoutSize FrameView::baseLayoutViewportSize() const 1922 1930 { … … 4906 4914 FloatSize FrameView::documentToClientOffset() const 4907 4915 { 4908 FloatSize clientOrigin = frame().settings().visualViewportEnabled() ? -toFloatSize(layoutViewportRect().location()) : -toFloatSize(visibleContentRect().location()); 4916 FloatSize clientOrigin; 4917 4918 if (frame().settings().visualViewportEnabled()) 4919 clientOrigin = -toFloatSize(m_unstableLayoutViewportRect ? m_unstableLayoutViewportRect.value().location() : layoutViewportRect().location()); 4920 else 4921 clientOrigin = -toFloatSize(visibleContentRect().location()); 4909 4922 4910 4923 // Layout and visual viewports are affected by page zoom, so we need to factor that out. -
trunk/Source/WebCore/page/FrameView.h
r218982 r219320 259 259 // Used with delegated scrolling (i.e. iOS). 260 260 WEBCORE_EXPORT void setLayoutViewportOverrideRect(std::optional<LayoutRect>); 261 // If set, overrides m_layoutViewportOverrideRect. Only used during unstable scroll updates, so that "client" coordinates are 262 // computed with an origin that changes along with the scroll position. 263 // FIXME: This is ugly; would be better to be able to make setLayoutViewportOverrideRect() callable during unstable updates. 264 WEBCORE_EXPORT void setUnstableLayoutViewportRect(std::optional<LayoutRect>); 261 265 262 266 // These are in document coordinates, unaffected by page scale (but affected by zooming). … … 834 838 LayoutPoint m_layoutViewportOrigin; 835 839 std::optional<LayoutRect> m_layoutViewportOverrideRect; 840 std::optional<LayoutRect> m_unstableLayoutViewportRect; 836 841 837 842 unsigned m_deferSetNeedsLayoutCount; -
trunk/Source/WebCore/page/scrolling/AsyncScrollingCoordinator.cpp
r217737 r219320 378 378 frameView.setInProgrammaticScroll(programmaticScroll); 379 379 380 LOG_WITH_STREAM(Scrolling, stream << "AsyncScrollingCoordinator " << this << " reconcileScrollingState scrollPosition " << scrollPosition << " programmaticScroll " << programmaticScroll << " stable " << inStableState << " " << scrollingLayerPositionAction); 381 380 382 std::optional<FloatRect> layoutViewportRect; 381 383 … … 385 387 frameView.setBaseLayoutViewportOrigin(LayoutPoint(origin.value()), FrameView::TriggerLayoutOrNot::No); 386 388 }, [&frameView, &layoutViewportRect, inStableState, visualViewportEnabled = visualViewportEnabled()](std::optional<FloatRect> overrideRect) { 389 if (!overrideRect) 390 return; 391 387 392 layoutViewportRect = overrideRect; 388 if ( overrideRect && inStableState) {389 if ( visualViewportEnabled)393 if (visualViewportEnabled) { 394 if (inStableState) { 390 395 frameView.setLayoutViewportOverrideRect(LayoutRect(overrideRect.value())); 396 frameView.setUnstableLayoutViewportRect(std::nullopt); 397 } else 398 frameView.setUnstableLayoutViewportRect(LayoutRect(layoutViewportRect.value())); 399 } 391 400 #if PLATFORM(IOS) 392 else393 401 else if (inStableState) 402 frameView.setCustomFixedPositionLayoutRect(enclosingIntRect(overrideRect.value())); 394 403 #endif 395 }396 404 } 397 405 ); -
trunk/Source/WebCore/page/scrolling/ScrollingStateFixedNode.cpp
r216478 r219320 66 66 return; 67 67 68 LOG_WITH_STREAM(Scrolling, stream << "ScrollingStateFixedNode " << scrollingNodeID() << " updateConstraints with viewport rect " << constraints.viewportRectAtLastLayout()); 69 68 70 m_constraints = constraints; 69 71 setPropertyChanged(ViewportConstraints); … … 76 78 GraphicsLayer* graphicsLayer = static_cast<GraphicsLayer*>(layer()); 77 79 78 LOG_WITH_STREAM( Compositing, stream << "ScrollingStateFixedNode::reconcileLayerPositionForViewportRect settingposition of layer " << graphicsLayer->primaryLayerID() << " to " << position);80 LOG_WITH_STREAM(Scrolling, stream << "ScrollingStateFixedNode " << scrollingNodeID() <<" reconcileLayerPositionForViewportRect " << action << " position of layer " << graphicsLayer->primaryLayerID() << " to " << position); 79 81 80 82 switch (action) {
Note:
See TracChangeset
for help on using the changeset viewer.