Changeset 185972 in webkit
- Timestamp:
- Jun 25, 2015, 5:29:58 PM (10 years ago)
- Location:
- trunk/Source
- Files:
-
- 16 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/ChangeLog
r185971 r185972 1 2015-06-25 Simon Fraser <simon.fraser@apple.com> 2 3 [iOS WK2] Swiping back just after scrolling can cause some tiles to disappear 4 https://bugs.webkit.org/show_bug.cgi?id=146329 5 rdar://problem/21233010 6 7 Reviewed by Tim Horton. 8 9 Have the Compositing log channel dump the visible rect used for layer flushing. 10 11 * rendering/RenderLayerCompositor.cpp: 12 (WebCore::RenderLayerCompositor::flushPendingLayerChanges): 13 1 14 2015-06-25 Brent Fulgham <bfulgham@apple.com> 2 15 -
trunk/Source/WebCore/rendering/RenderLayerCompositor.cpp
r185762 r185972 468 468 if (GraphicsLayer* rootLayer = rootGraphicsLayer()) { 469 469 #if PLATFORM(IOS) 470 rootLayer->flushCompositingState(frameView.exposedContentRect()); 470 FloatRect exposedRect = frameView.exposedContentRect(); 471 LOG(Compositing, "RenderLayerCompositor %p flushPendingLayerChanges(%d) %.2f, %.2f, %.2fx%.2f", this, isFlushRoot, 472 exposedRect.x(), exposedRect.y(), exposedRect.width(), exposedRect.height()); 473 rootLayer->flushCompositingState(exposedRect); 471 474 #else 472 475 // Having a m_clipLayer indicates that we're doing scrolling via GraphicsLayers. … … 474 477 if (!frameView.exposedRect().isInfinite()) 475 478 visibleRect.intersect(IntRect(frameView.exposedRect())); 479 480 LOG(Compositing, "RenderLayerCompositor %p flushPendingLayerChanges(%d) %d, %d, %dx%d", this, isFlushRoot, 481 visibleRect.x(), visibleRect.y(), visibleRect.width(), visibleRect.height()); 476 482 rootLayer->flushCompositingState(visibleRect); 477 483 #endif -
trunk/Source/WebKit2/ChangeLog
r185968 r185972 1 2015-06-25 Simon Fraser <simon.fraser@apple.com> 2 3 [iOS WK2] Swiping back just after scrolling can cause some tiles to disappear 4 https://bugs.webkit.org/show_bug.cgi?id=146329 5 rdar://problem/21233010 6 7 Reviewed by Tim Horton. 8 9 When doing a back swipe, views interposed between the WKWebView and the WKContentView 10 get positions and animations for the swipe. This -_updateVisibleContentRects to 11 compute bad visible and unobscured rects, so we lose tiles. 12 13 Fix by "freezing" the visible and unobscured content rects in the view being 14 swiped for the duration of the navigation gesture. When swiping the main view, 15 we just plumb through navigationGestureDidEnd(). When Reader is showing and the 16 swiped view is different from the navigating view, use the new navigationGestureDidEnd() 17 override which takes no arguments. 18 19 * UIProcess/API/Cocoa/WKWebView.mm: 20 (-[WKWebView _updateVisibleContentRects]): 21 (-[WKWebView _navigationGestureDidBegin]): 22 (-[WKWebView _navigationGestureDidEnd]): 23 * UIProcess/API/Cocoa/WKWebViewInternal.h: 24 * UIProcess/API/gtk/PageClientImpl.cpp: 25 (WebKit::PageClientImpl::navigationGestureDidEnd): 26 * UIProcess/API/gtk/PageClientImpl.h: 27 * UIProcess/CoordinatedGraphics/WebView.h: 28 * UIProcess/PageClient.h: 29 * UIProcess/WebPageProxy.cpp: 30 (WebKit::WebPageProxy::navigationGestureDidEnd): 31 * UIProcess/WebPageProxy.h: 32 * UIProcess/ios/PageClientImplIOS.h: 33 * UIProcess/ios/PageClientImplIOS.mm: 34 (WebKit::PageClientImpl::navigationGestureDidBegin): 35 (WebKit::PageClientImpl::navigationGestureDidEnd): 36 * UIProcess/ios/ViewGestureControllerIOS.mm: 37 (WebKit::ViewGestureController::beginSwipeGesture): 38 (WebKit::ViewGestureController::endSwipeGesture): 39 * UIProcess/mac/PageClientImpl.h: 40 * UIProcess/mac/PageClientImpl.mm: 41 (WebKit::PageClientImpl::navigationGestureDidEnd): 42 1 43 2015-06-25 Joseph Pecoraro <pecoraro@apple.com> 2 44 -
trunk/Source/WebKit2/UIProcess/API/Cocoa/WKWebView.mm
r185967 r185972 84 84 #import <wtf/MathExtras.h> 85 85 #import <wtf/NeverDestroyed.h> 86 #import <wtf/Optional.h> 86 87 #import <wtf/RetainPtr.h> 87 88 … … 190 191 RetainPtr<UIView> _resizeAnimationView; 191 192 CGFloat _lastAdjustmentForScroller; 193 Optional<CGRect> _frozenVisibleContentRect; 194 Optional<CGRect> _frozenUnobscuredContentRect; 192 195 193 196 BOOL _needsToRestoreExposedRect; … … 1560 1563 1561 1564 CGRect fullViewRect = self.bounds; 1562 CGRect visibleRectInContentCoordinates = [self convertRect:fullViewRect toView:_contentView.get()];1565 CGRect visibleRectInContentCoordinates = _frozenVisibleContentRect ? _frozenVisibleContentRect.value() : [self convertRect:fullViewRect toView:_contentView.get()]; 1563 1566 1564 1567 CGRect unobscuredRect = UIEdgeInsetsInsetRect(fullViewRect, [self _computedContentInset]); 1565 CGRect unobscuredRectInContentCoordinates = [self convertRect:unobscuredRect toView:_contentView.get()];1568 CGRect unobscuredRectInContentCoordinates = _frozenUnobscuredContentRect ? _frozenUnobscuredContentRect.value() : [self convertRect:unobscuredRect toView:_contentView.get()]; 1566 1569 1567 1570 CGFloat scaleFactor = contentZoomScale(self); … … 1711 1714 } 1712 1715 1713 #endif 1716 - (void)_navigationGestureDidBegin 1717 { 1718 // During a back/forward swipe, there's a view interposed between this view and the content view that has 1719 // an offset and animation on it, which results in computing incorrect rectangles. Work around by using 1720 // frozen rects during swipes. 1721 CGRect fullViewRect = self.bounds; 1722 CGRect unobscuredRect = UIEdgeInsetsInsetRect(fullViewRect, [self _computedContentInset]); 1723 1724 _frozenVisibleContentRect = [self convertRect:fullViewRect toView:_contentView.get()]; 1725 _frozenUnobscuredContentRect = [self convertRect:unobscuredRect toView:_contentView.get()]; 1726 } 1727 1728 - (void)_navigationGestureDidEnd 1729 { 1730 _frozenVisibleContentRect = Nullopt; 1731 _frozenUnobscuredContentRect = Nullopt; 1732 } 1733 1734 #endif // PLATFORM(IOS) 1714 1735 1715 1736 #pragma mark OS X-specific methods … … 1801 1822 return [_wkView performDragOperation:sender]; 1802 1823 } 1803 #endif 1824 #endif // PLATFORM(MAC) 1804 1825 1805 1826 @end -
trunk/Source/WebKit2/UIProcess/API/Cocoa/WKWebViewInternal.h
r185727 r185972 104 104 - (void)_updateScrollViewBackground; 105 105 106 - (void)_navigationGestureDidBegin; 107 - (void)_navigationGestureDidEnd; 108 106 109 @property (nonatomic, readonly) UIEdgeInsets _computedContentInset; 107 110 #else -
trunk/Source/WebKit2/UIProcess/API/gtk/PageClientImpl.cpp
r185415 r185972 411 411 } 412 412 413 void PageClientImpl::navigationGestureDidEnd() 414 { 415 } 416 413 417 void PageClientImpl::willRecordNavigationSnapshot(WebBackForwardListItem&) 414 418 { -
trunk/Source/WebKit2/UIProcess/API/gtk/PageClientImpl.h
r185415 r185972 123 123 virtual void navigationGestureWillEnd(bool, WebBackForwardListItem&) override; 124 124 virtual void navigationGestureDidEnd(bool, WebBackForwardListItem&) override; 125 virtual void navigationGestureDidEnd() override; 125 126 virtual void willRecordNavigationSnapshot(WebBackForwardListItem&) override; 126 127 -
trunk/Source/WebKit2/UIProcess/CoordinatedGraphics/WebView.h
r183517 r185972 204 204 virtual void navigationGestureWillEnd(bool, WebBackForwardListItem&) override { }; 205 205 virtual void navigationGestureDidEnd(bool, WebBackForwardListItem&) override { }; 206 virtual void navigationGestureDidEnd() override { }; 206 207 virtual void willRecordNavigationSnapshot(WebBackForwardListItem&) override { }; 207 208 -
trunk/Source/WebKit2/UIProcess/PageClient.h
r185415 r185972 308 308 virtual void navigationGestureWillEnd(bool willNavigate, WebBackForwardListItem&) = 0; 309 309 virtual void navigationGestureDidEnd(bool willNavigate, WebBackForwardListItem&) = 0; 310 virtual void navigationGestureDidEnd() = 0; 310 311 virtual void willRecordNavigationSnapshot(WebBackForwardListItem&) = 0; 311 312 -
trunk/Source/WebKit2/UIProcess/WebPageProxy.cpp
r185929 r185972 5747 5747 } 5748 5748 5749 void WebPageProxy::navigationGestureDidEnd() 5750 { 5751 m_pageClient.navigationGestureDidEnd(); 5752 } 5753 5749 5754 void WebPageProxy::willRecordNavigationSnapshot(WebBackForwardListItem& item) 5750 5755 { -
trunk/Source/WebKit2/UIProcess/WebPageProxy.h
r185929 r185972 1012 1012 void navigationGestureWillEnd(bool willNavigate, WebBackForwardListItem&); 1013 1013 void navigationGestureDidEnd(bool willNavigate, WebBackForwardListItem&); 1014 void navigationGestureDidEnd(); 1014 1015 void navigationGestureSnapshotWasRemoved(); 1015 1016 void willRecordNavigationSnapshot(WebBackForwardListItem&); -
trunk/Source/WebKit2/UIProcess/ios/PageClientImplIOS.h
r183517 r185972 176 176 virtual void navigationGestureWillEnd(bool willNavigate, WebBackForwardListItem&) override; 177 177 virtual void navigationGestureDidEnd(bool willNavigate, WebBackForwardListItem&) override; 178 virtual void navigationGestureDidEnd() override; 178 179 virtual void willRecordNavigationSnapshot(WebBackForwardListItem&) override; 179 180 -
trunk/Source/WebKit2/UIProcess/ios/PageClientImplIOS.mm
r185727 r185972 686 686 void PageClientImpl::navigationGestureDidBegin() 687 687 { 688 [m_webView _navigationGestureDidBegin]; 688 689 NavigationState::fromWebPage(*m_webView->_page).navigationGestureDidBegin(); 689 690 } … … 697 698 { 698 699 NavigationState::fromWebPage(*m_webView->_page).navigationGestureDidEnd(willNavigate, item); 700 [m_webView _navigationGestureDidEnd]; 701 } 702 703 void PageClientImpl::navigationGestureDidEnd() 704 { 705 [m_webView _navigationGestureDidEnd]; 699 706 } 700 707 -
trunk/Source/WebKit2/UIProcess/ios/ViewGestureControllerIOS.mm
r185967 r185972 185 185 m_webPageProxyForBackForwardListForCurrentSwipe = m_alternateBackForwardListSourceView.get() ? m_alternateBackForwardListSourceView.get()->_page : &m_webPageProxy; 186 186 m_webPageProxyForBackForwardListForCurrentSwipe->navigationGestureDidBegin(); 187 if (&m_webPageProxy != m_webPageProxyForBackForwardListForCurrentSwipe) 188 m_webPageProxy.navigationGestureDidBegin(); 187 189 188 190 auto& backForwardList = m_webPageProxyForBackForwardListForCurrentSwipe->backForwardList(); … … 286 288 removeSwipeSnapshot(); 287 289 webPageProxyForBackForwardListForCurrentSwipe->navigationGestureDidEnd(false, *targetItem); 290 if (&m_webPageProxy != webPageProxyForBackForwardListForCurrentSwipe) 291 m_webPageProxy.navigationGestureDidEnd(); 288 292 return; 289 293 } … … 294 298 295 299 m_webPageProxyForBackForwardListForCurrentSwipe->navigationGestureDidEnd(true, *targetItem); 300 if (&m_webPageProxy != m_webPageProxyForBackForwardListForCurrentSwipe) 301 m_webPageProxy.navigationGestureDidEnd(); 302 296 303 m_webPageProxyForBackForwardListForCurrentSwipe->goToBackForwardItem(targetItem); 297 304 -
trunk/Source/WebKit2/UIProcess/mac/PageClientImpl.h
r184780 r185972 187 187 virtual void navigationGestureWillEnd(bool willNavigate, WebBackForwardListItem&) override; 188 188 virtual void navigationGestureDidEnd(bool willNavigate, WebBackForwardListItem&) override; 189 virtual void navigationGestureDidEnd() override; 189 190 virtual void willRecordNavigationSnapshot(WebBackForwardListItem&) override; 190 191 -
trunk/Source/WebKit2/UIProcess/mac/PageClientImpl.mm
r185229 r185972 766 766 } 767 767 768 void PageClientImpl::navigationGestureDidEnd() 769 { 770 } 771 768 772 void PageClientImpl::willRecordNavigationSnapshot(WebBackForwardListItem& item) 769 773 {
Note:
See TracChangeset
for help on using the changeset viewer.