Changeset 248447 in webkit
- Timestamp:
- Aug 8, 2019, 4:01:25 PM (6 years ago)
- Location:
- trunk/Source
- Files:
-
- 16 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/ChangeLog
r248445 r248447 378 378 (WebCore::WHLSL::EscapedVariableCollector::takeEscapedVariables): Deleted. 379 379 * Modules/webgpu/WHLSL/WHLSLRecursionChecker.cpp: 380 381 2019-08-08 Simon Fraser <simon.fraser@apple.com> 382 383 Add to InteractionInformationAtPosition information about whether the element is in a subscrollable region 384 https://bugs.webkit.org/show_bug.cgi?id=200374 385 rdar://problem/54095519 386 387 Reviewed by Tim Horton. 388 389 Add to InteractionInformationAtPosition a ScrollingNodeID which represents the enclosing scrolling 390 node that affects the targeted element's position. We use this to find a UIScrollView in the UI process. 391 392 The entrypoint to finding the enclosing scrolling node is ScrollingCoordinator::scrollableContainerNodeID(), 393 which calls RenderLayerCompositor::asyncScrollableContainerNodeID() to look for a scrolling ancestor in 394 the current frame, and then looks for an enclosing scrollable frame, or a scrolling ancestor in 395 the enclosing frame. 396 397 There's a bit of subtlety in RenderLayerCompositor::asyncScrollableContainerNodeID() because if you're asking 398 for the node that scrolls the renderer, if the renderer itself has a layer and is scrollable, you want 399 its enclosing scroller. 400 401 * page/scrolling/AsyncScrollingCoordinator.cpp: 402 (WebCore::AsyncScrollingCoordinator::scrollableContainerNodeID const): 403 * page/scrolling/AsyncScrollingCoordinator.h: 404 * page/scrolling/ScrollingCoordinator.cpp: 405 (WebCore::scrollableContainerNodeID const): 406 * page/scrolling/ScrollingCoordinator.h: 407 * rendering/RenderLayer.h: 408 * rendering/RenderLayerCompositor.cpp: 409 (WebCore::RenderLayerCompositor::asyncScrollableContainerNodeID): 410 * rendering/RenderLayerCompositor.h: 380 411 381 412 2019-08-07 Saam Barati <sbarati@apple.com> -
trunk/Source/WebCore/page/scrolling/AsyncScrollingCoordinator.cpp
r247839 r248447 38 38 #include "Page.h" 39 39 #include "PerformanceLoggingClient.h" 40 #include "RenderLayerCompositor.h" 41 #include "RenderView.h" 40 42 #include "ScrollAnimator.h" 41 43 #include "ScrollingConstraints.h" … … 790 792 } 791 793 794 ScrollingNodeID AsyncScrollingCoordinator::scrollableContainerNodeID(const RenderObject& renderer) const 795 { 796 if (auto overflowScrollingNodeID = renderer.view().compositor().asyncScrollableContainerNodeID(renderer)) 797 return overflowScrollingNodeID; 798 799 // If we're in a scrollable frame, return that. 800 auto* frameView = renderer.frame().view(); 801 if (!frameView) 802 return 0; 803 804 if (auto scrollingNodeID = frameView->scrollingNodeID()) 805 return scrollingNodeID; 806 807 // Otherwise, look for a scrollable element in the containing frame. 808 if (auto* ownerElement = renderer.document().ownerElement()) { 809 if (auto* frameRenderer = ownerElement->renderer()) 810 return scrollableContainerNodeID(*frameRenderer); 811 } 812 813 return 0; 814 } 815 792 816 String AsyncScrollingCoordinator::scrollingStateTreeAsText(ScrollingStateTreeAsTextBehavior behavior) const 793 817 { -
trunk/Source/WebCore/page/scrolling/AsyncScrollingCoordinator.h
r247344 r248447 92 92 bool asyncFrameOrOverflowScrollingEnabled() const; 93 93 94 WEBCORE_EXPORT ScrollingNodeID scrollableContainerNodeID(const RenderObject&) const override; 95 94 96 WEBCORE_EXPORT void frameViewLayoutUpdated(FrameView&) override; 95 97 WEBCORE_EXPORT void frameViewRootLayerDidChange(FrameView&) override; -
trunk/Source/WebCore/page/scrolling/ScrollingCoordinator.cpp
r247306 r248447 97 97 } 98 98 99 ScrollingNodeID ScrollingCoordinator::scrollableContainerNodeID(const RenderObject&) const 100 { 101 return 0; 102 } 103 99 104 EventTrackingRegions ScrollingCoordinator::absoluteEventTrackingRegionsForFrame(const Frame& frame) const 100 105 { -
trunk/Source/WebCore/page/scrolling/ScrollingCoordinator.h
r247344 r248447 60 60 class Page; 61 61 class Region; 62 class RenderObject; 62 63 class RenderLayer; 63 64 class ScrollableArea; … … 83 84 // Return whether this scrolling coordinator handles scrolling for the given overflow scroll layer. 84 85 WEBCORE_EXPORT virtual bool coordinatesScrollingForOverflowLayer(const RenderLayer&) const; 86 87 // Returns the ScrollingNodeID of the innermost scrolling node that scrolls the renderer. 88 WEBCORE_EXPORT virtual ScrollingNodeID scrollableContainerNodeID(const RenderObject&) const; 85 89 86 90 // Should be called whenever the given frame view has been laid out. -
trunk/Source/WebCore/rendering/RenderLayerCompositor.cpp
r247917 r248447 2708 2708 } 2709 2709 2710 // Note that this returns the ScrollingNodeID of the scroller this layer is embedded in, not the layer's own ScrollingNodeID if it has one. 2711 ScrollingNodeID RenderLayerCompositor::asyncScrollableContainerNodeID(const RenderObject& renderer) 2712 { 2713 auto* enclosingLayer = renderer.enclosingLayer(); 2714 if (!enclosingLayer) 2715 return 0; 2716 2717 auto layerScrollingNodeID = [](const RenderLayer& layer) -> ScrollingNodeID { 2718 if (layer.isComposited()) 2719 return layer.backing()->scrollingNodeIDForRole(ScrollCoordinationRole::Scrolling); 2720 return 0; 2721 }; 2722 2723 // If the renderer is inside the layer, we care about the layer's scrollability. Otherwise, we let traverseAncestorLayers look at ancestors. 2724 if (!renderer.hasLayer()) { 2725 if (auto scrollingNodeID = layerScrollingNodeID(*enclosingLayer)) 2726 return scrollingNodeID; 2727 } 2728 2729 ScrollingNodeID containerScrollingNodeID = 0; 2730 traverseAncestorLayers(*enclosingLayer, [&](const RenderLayer& ancestorLayer, bool isContainingBlockChain, bool /*isPaintOrderAncestor*/) { 2731 if (isContainingBlockChain && ancestorLayer.hasCompositedScrollableOverflow()) { 2732 containerScrollingNodeID = layerScrollingNodeID(ancestorLayer); 2733 return AncestorTraversal::Stop; 2734 } 2735 return AncestorTraversal::Continue; 2736 }); 2737 2738 return containerScrollingNodeID; 2739 } 2740 2710 2741 // Return true if the given layer is a stacking context and has compositing child 2711 2742 // layers that it needs to clip. In this case we insert a clipping GraphicsLayer -
trunk/Source/WebCore/rendering/RenderLayerCompositor.h
r247246 r248447 215 215 bool updateAncestorClippingStack(const RenderLayer&, const RenderLayer* compositingAncestor) const; 216 216 217 // Returns the ScrollingNodeID for the containing async-scrollable layer that scrolls this renderer's border box. 218 // May return 0 for position-fixed content. 219 static ScrollingNodeID asyncScrollableContainerNodeID(const RenderObject&); 220 217 221 // Whether layer's backing needs a graphics layer to clip z-order children of the given layer. 218 222 static bool clipsCompositingDescendants(const RenderLayer&); -
trunk/Source/WebKit/ChangeLog
r248444 r248447 310 310 (-[WKContentView continueContextMenuInteractionWithDataDetectors:]): New method to 311 311 use DataDetectors if possible. 312 313 2019-08-08 Simon Fraser <simon.fraser@apple.com> 314 315 Add to InteractionInformationAtPosition information about whether the element is in a subscrollable region 316 https://bugs.webkit.org/show_bug.cgi?id=200374 317 rdar://problem/54095519 318 319 Reviewed by Tim Horton. 320 321 Add InteractionInformationAtPosition.containerScrollingNodeID and initialize it in elementPositionInformation() 322 by asking the scrolling coordinator. 323 324 Also add a way to get from a ScrollingNodeID to a UIScrollView to RemoteScrollingCoordinatorProxy, 325 which gets the scrolling node and asks the delegate for the UIView. 326 327 * Shared/ios/InteractionInformationAtPosition.h: 328 * Shared/ios/InteractionInformationAtPosition.mm: 329 (WebKit::InteractionInformationAtPosition::encode const): 330 (WebKit::InteractionInformationAtPosition::decode): 331 * UIProcess/RemoteLayerTree/RemoteScrollingCoordinatorProxy.h: 332 * UIProcess/RemoteLayerTree/ios/RemoteScrollingCoordinatorProxyIOS.mm: 333 (WebKit::RemoteScrollingCoordinatorProxy::scrollViewForScrollingNodeID const): 334 * UIProcess/RemoteLayerTree/ios/ScrollingTreeOverflowScrollingNodeIOS.h: 335 * UIProcess/RemoteLayerTree/ios/ScrollingTreeOverflowScrollingNodeIOS.mm: 336 (WebKit::ScrollingTreeOverflowScrollingNodeIOS::scrollView const): 337 * UIProcess/RemoteLayerTree/ios/ScrollingTreeScrollingNodeDelegateIOS.h: 338 * WebProcess/WebPage/ios/WebPageIOS.mm: 339 (WebKit::elementPositionInformation): 312 340 313 341 2019-08-07 Priyanka Agarwal <pagarwal999@apple.com> -
trunk/Source/WebKit/Shared/ios/InteractionInformationAtPosition.h
r246892 r248447 32 32 #include "ShareableBitmap.h" 33 33 #include <WebCore/IntPoint.h> 34 #include <WebCore/ScrollTypes.h> 34 35 #include <WebCore/SelectionRect.h> 35 36 #include <WebCore/TextIndicator.h> … … 62 63 bool isAnimatedImage { false }; 63 64 bool isElement { false }; 65 WebCore::ScrollingNodeID containerScrollingNodeID { 0 }; 64 66 #if ENABLE(DATA_DETECTION) 65 67 bool isDataDetectorLink { false }; -
trunk/Source/WebKit/Shared/ios/InteractionInformationAtPosition.mm
r246892 r248447 57 57 encoder << isAnimatedImage; 58 58 encoder << isElement; 59 encoder << containerScrollingNodeID; 59 60 encoder << adjustedPointForNodeRespondingToClickEvents; 60 61 encoder << url; … … 126 127 return false; 127 128 129 if (!decoder.decode(result.containerScrollingNodeID)) 130 return false; 131 128 132 if (!decoder.decode(result.adjustedPointForNodeRespondingToClickEvents)) 129 133 return false; -
trunk/Source/WebKit/UIProcess/RemoteLayerTree/RemoteScrollingCoordinatorProxy.h
r246490 r248447 34 34 #include <wtf/Noncopyable.h> 35 35 #include <wtf/RefPtr.h> 36 37 OBJC_CLASS UIScrollView; 36 38 37 39 namespace WebCore { … … 88 90 89 91 #if PLATFORM(IOS_FAMILY) 92 UIScrollView *scrollViewForScrollingNodeID(WebCore::ScrollingNodeID) const; 93 90 94 WebCore::FloatRect currentLayoutViewport() const; 91 95 void scrollingTreeNodeWillStartPanGesture(); -
trunk/Source/WebKit/UIProcess/RemoteLayerTree/ios/RemoteScrollingCoordinatorProxyIOS.mm
r246962 r248447 32 32 #import "RemoteLayerTreeHost.h" 33 33 #import "RemoteLayerTreeNode.h" 34 #import "ScrollingTreeOverflowScrollingNodeIOS.h" 34 35 #import "WebPageProxy.h" 35 36 #import <UIKit/UIView.h> … … 53 54 using namespace WebCore; 54 55 56 UIScrollView *RemoteScrollingCoordinatorProxy::scrollViewForScrollingNodeID(WebCore::ScrollingNodeID nodeID) const 57 { 58 auto* treeNode = m_scrollingTree->nodeForID(nodeID); 59 if (!is<ScrollingTreeOverflowScrollingNode>(treeNode)) 60 return nil; 61 62 auto* scrollingNode = downcast<ScrollingTreeOverflowScrollingNode>(treeNode); 63 // All ScrollingTreeOverflowScrollingNodes are ScrollingTreeOverflowScrollingNodeIOS on iOS. 64 return static_cast<ScrollingTreeOverflowScrollingNodeIOS*>(scrollingNode)->scrollView(); 65 } 66 55 67 void RemoteScrollingCoordinatorProxy::connectStateNodeLayers(ScrollingStateTree& stateTree, const RemoteLayerTreeHost& layerTreeHost) 56 68 { -
trunk/Source/WebKit/UIProcess/RemoteLayerTree/ios/ScrollingTreeOverflowScrollingNodeIOS.h
r243926 r248447 30 30 #include <WebCore/ScrollingTreeOverflowScrollingNode.h> 31 31 32 OBJC_CLASS UIScrollView; 33 32 34 namespace WebKit { 33 35 … … 38 40 static Ref<ScrollingTreeOverflowScrollingNodeIOS> create(WebCore::ScrollingTree&, WebCore::ScrollingNodeID); 39 41 virtual ~ScrollingTreeOverflowScrollingNodeIOS(); 42 43 UIScrollView* scrollView() const; 40 44 41 45 private: -
trunk/Source/WebKit/UIProcess/RemoteLayerTree/ios/ScrollingTreeOverflowScrollingNodeIOS.mm
r243926 r248447 52 52 } 53 53 54 UIScrollView* ScrollingTreeOverflowScrollingNodeIOS::scrollView() const 55 { 56 return m_scrollingNodeDelegate->scrollView(); 57 } 58 54 59 void ScrollingTreeOverflowScrollingNodeIOS::commitStateBeforeChildren(const WebCore::ScrollingStateNode& stateNode) 55 60 { -
trunk/Source/WebKit/UIProcess/RemoteLayerTree/ios/ScrollingTreeScrollingNodeDelegateIOS.h
r246926 r248447 75 75 76 76 UIScrollView *findActingScrollParent(UIScrollView *); 77 UIScrollView *scrollView() const; 77 78 78 79 private: 79 UIScrollView *scrollView() const;80 81 80 RetainPtr<CALayer> m_scrollLayer; 82 81 RetainPtr<CALayer> m_scrolledContentsLayer; -
trunk/Source/WebKit/WebProcess/WebPage/ios/WebPageIOS.mm
r248438 r248447 2684 2684 } 2685 2685 2686 auto* elementForScrollTesting = linkElement ? linkElement : &element; 2687 if (auto* renderer = elementForScrollTesting->renderer()) { 2688 #if ENABLE(ASYNC_SCROLLING) 2689 if (auto* scrollingCoordinator = page.scrollingCoordinator()) 2690 info.containerScrollingNodeID = scrollingCoordinator->scrollableContainerNodeID(*renderer); 2691 #endif 2692 } 2693 2686 2694 if (auto* renderer = element.renderer()) { 2687 2695 if (renderer->isRenderImage())
Note:
See TracChangeset
for help on using the changeset viewer.