Changeset 182242 in webkit
- Timestamp:
- Apr 1, 2015, 11:30:39 AM (10 years ago)
- Location:
- trunk
- Files:
-
- 29 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LayoutTests/ChangeLog
r182241 r182242 1 2015-03-31 Simon Fraser <simon.fraser@apple.com> 2 3 Make it possible to compute a region for elements on the page that have wheel event handlers 4 https://bugs.webkit.org/show_bug.cgi?id=142807 5 6 Reviewed by Beth Dakin. 7 8 Update results, since any handler with position:fixed now causes the region to cover the document. 9 10 * platform/mac-wk2/tiled-drawing/scrolling/non-fast-region/wheel-handler-fixed-child-expected.txt: 11 * platform/mac-wk2/tiled-drawing/scrolling/non-fast-region/wheel-handler-inside-fixed-expected.txt: 12 * platform/mac-wk2/tiled-drawing/scrolling/non-fast-region/wheel-handler-on-fixed-expected.txt: 13 1 14 2015-04-01 David Hyatt <hyatt@apple.com> 2 15 -
trunk/LayoutTests/platform/mac-wk2/tiled-drawing/scrolling/non-fast-region/wheel-handler-fixed-child-expected.txt
r182215 r182242 1 50, 50 - 150, 150 1 0, 0 - 785, 628 -
trunk/LayoutTests/platform/mac-wk2/tiled-drawing/scrolling/non-fast-region/wheel-handler-inside-fixed-expected.txt
r182215 r182242 1 60, 60 - 160, 1601 0, 0 - 800, 600 -
trunk/LayoutTests/platform/mac-wk2/tiled-drawing/scrolling/non-fast-region/wheel-handler-on-fixed-expected.txt
r182215 r182242 1 10, 10 - 110, 1101 0, 0 - 800, 600 -
trunk/Source/WebCore/ChangeLog
r182241 r182242 1 2015-03-31 Simon Fraser <simon.fraser@apple.com> 2 3 Remove scrolling tree dependency on wheel event handler counts, and use fast scrolling even when there are wheel handlers 4 https://bugs.webkit.org/show_bug.cgi?id=143288 5 rdar://problem/16049624 6 7 Reviewed by Beth Dakin. 8 9 Remove the wheel event counting that Document does, and passes into the scrolling tree. 10 The ScrollingTree now just uses the non-fast scrollable region to determine when to 11 fast scroll on pages with wheel event handlers. 12 13 If a handler includes position:fixed renderers, we just cover the whole document 14 with the slow-scrolling region currently. This could be improved. 15 16 * dom/Document.cpp: 17 (WebCore::Document::Document): 18 (WebCore::Document::didBecomeCurrentDocumentInFrame): 19 (WebCore::Document::wheelEventHandlersChanged): 20 (WebCore::Document::didAddWheelEventHandler): 21 (WebCore::Document::didRemoveWheelEventHandler): 22 (WebCore::Document::wheelEventHandlerCount): 23 (WebCore::Document::touchEventHandlerCount): 24 (WebCore::Document::absoluteRegionForEventTargets): Changed to return a pair<Region, bool> 25 where the bool indicates whether any handler includes position:fixed content. 26 (WebCore::pageWheelEventHandlerCountChanged): Deleted. 27 (WebCore::wheelEventHandlerCountChanged): Deleted. 28 * dom/Document.h: 29 (WebCore::Document::wheelEventHandlerCount): Deleted. 30 * loader/EmptyClients.h: 31 * page/ChromeClient.h: 32 * page/DebugPageOverlays.cpp: 33 (WebCore::MouseWheelRegionOverlay::updateRegion): 34 * page/scrolling/AsyncScrollingCoordinator.cpp: 35 (WebCore::AsyncScrollingCoordinator::frameViewNonFastScrollableRegionChanged): 36 (WebCore::AsyncScrollingCoordinator::recomputeWheelEventHandlerCountForFrameView): Deleted. 37 * page/scrolling/AsyncScrollingCoordinator.h: 38 * page/scrolling/ScrollingCoordinator.cpp: 39 (WebCore::ScrollingCoordinator::computeNonFastScrollableRegion): 40 (WebCore::ScrollingCoordinator::frameViewRootLayerDidChange): 41 (WebCore::ScrollingCoordinator::computeCurrentWheelEventHandlerCount): Deleted. 42 (WebCore::ScrollingCoordinator::frameViewWheelEventHandlerCountChanged): Deleted. 43 * page/scrolling/ScrollingCoordinator.h: 44 (WebCore::ScrollingCoordinator::recomputeWheelEventHandlerCountForFrameView): Deleted. 45 * page/scrolling/ScrollingStateFrameScrollingNode.cpp: 46 (WebCore::ScrollingStateFrameScrollingNode::ScrollingStateFrameScrollingNode): 47 (WebCore::ScrollingStateFrameScrollingNode::setWheelEventHandlerCount): Deleted. 48 * page/scrolling/ScrollingStateFrameScrollingNode.h: 49 * page/scrolling/ScrollingTree.cpp: 50 (WebCore::ScrollingTree::ScrollingTree): 51 (WebCore::ScrollingTree::shouldHandleWheelEventSynchronously): 52 (WebCore::ScrollingTree::commitNewTreeState): 53 * page/scrolling/ScrollingTree.h: 54 * page/scrolling/mac/ScrollingCoordinatorMac.mm: 55 (WebCore::ScrollingCoordinatorMac::updateTiledScrollingIndicator): 56 * page/scrolling/mac/ScrollingTreeFrameScrollingNodeMac.mm: 57 (WebCore::ScrollingTreeFrameScrollingNodeMac::updateBeforeChildren): 58 (WebCore::logWheelEventHandlerCountChanged): Deleted. 59 * testing/Internals.cpp: 60 (WebCore::Internals::touchEventHandlerCount): 61 1 62 2015-04-01 David Hyatt <hyatt@apple.com> 2 63 -
trunk/Source/WebCore/dom/Document.cpp
r182240 r182242 491 491 , m_writeRecursionIsTooDeep(false) 492 492 , m_writeRecursionDepth(0) 493 , m_wheelEventHandlerCount(0)494 493 , m_lastHandledUserGestureTimestamp(0) 495 494 #if PLATFORM(IOS) … … 2099 2098 } 2100 2099 2101 static void pageWheelEventHandlerCountChanged(Page& page)2102 {2103 unsigned count = 0;2104 for (const Frame* frame = &page.mainFrame(); frame; frame = frame->tree().traverseNext()) {2105 if (Document* document = frame->document())2106 count += document->wheelEventHandlerCount();2107 }2108 page.chrome().client().numWheelEventHandlersChanged(count);2109 }2110 2111 2100 void Document::didBecomeCurrentDocumentInFrame() 2112 2101 { … … 2129 2118 // unless the documents they are replacing had wheel event handlers. 2130 2119 if (page() && m_frame->isMainFrame()) 2131 pageWheelEventHandlerCountChanged(*page());2120 wheelEventHandlersChanged(); 2132 2121 2133 2122 #if ENABLE(TOUCH_EVENTS) … … 5983 5972 #endif // !PLATFORM(IOS) 5984 5973 5985 static void wheelEventHandlerCountChanged(Document* document)5986 { 5987 Page* page = document->page();5974 void Document::wheelEventHandlersChanged() 5975 { 5976 Page* page = this->page(); 5988 5977 if (!page) 5989 5978 return; 5990 5979 5991 pageWheelEventHandlerCountChanged(*page); 5992 5993 ScrollingCoordinator* scrollingCoordinator = page->scrollingCoordinator(); 5994 if (!scrollingCoordinator) 5995 return; 5996 5997 FrameView* frameView = document->view(); 5998 if (!frameView) 5999 return; 6000 6001 // FIXME: Why doesn't this need to be called in didBecomeCurrentDocumentInFrame? 6002 scrollingCoordinator->frameViewWheelEventHandlerCountChanged(*frameView); 5980 if (FrameView* frameView = view()) { 5981 if (ScrollingCoordinator* scrollingCoordinator = page->scrollingCoordinator()) 5982 scrollingCoordinator->frameViewNonFastScrollableRegionChanged(*frameView); 5983 } 5984 5985 bool haveHandlers = m_wheelEventTargets && !m_wheelEventTargets->isEmpty(); 5986 page->chrome().client().wheelEventHandlersChanged(haveHandlers); 6003 5987 } 6004 5988 6005 5989 void Document::didAddWheelEventHandler(Node& node) 6006 5990 { 6007 ++m_wheelEventHandlerCount;6008 6009 5991 if (!m_wheelEventTargets) 6010 5992 m_wheelEventTargets = std::make_unique<EventTargetSet>(); … … 6017 5999 } 6018 6000 6019 wheelEventHandler CountChanged(this);6001 wheelEventHandlersChanged(); 6020 6002 6021 6003 if (Frame* frame = this->frame()) … … 6025 6007 void Document::didRemoveWheelEventHandler(Node& node) 6026 6008 { 6027 ASSERT(m_wheelEventHandlerCount > 0);6028 --m_wheelEventHandlerCount;6029 6030 6009 if (!m_wheelEventTargets) 6031 6010 return; … … 6039 6018 } 6040 6019 6041 wheelEventHandler CountChanged(this);6020 wheelEventHandlersChanged(); 6042 6021 6043 6022 if (Frame* frame = this->frame()) 6044 6023 DebugPageOverlays::didChangeEventHandlers(*frame); 6024 } 6025 6026 unsigned Document::wheelEventHandlerCount() const 6027 { 6028 if (!m_wheelEventTargets) 6029 return 0; 6030 6031 unsigned count = 0; 6032 for (auto& handler : *m_wheelEventTargets) 6033 count += handler.value; 6034 6035 return count; 6045 6036 } 6046 6037 … … 6115 6106 } 6116 6107 6108 unsigned Document::touchEventHandlerCount() const 6109 { 6110 #if ENABLE(TOUCH_EVENTS) 6111 if (!m_touchEventTargets) 6112 return 0; 6113 6114 unsigned count = 0; 6115 for (auto& handler : *m_touchEventTargets) 6116 count += handler.value; 6117 6118 return count; 6119 #else 6120 return 0; 6121 #endif 6122 } 6123 6117 6124 LayoutRect Document::absoluteEventHandlerBounds(bool& includesFixedPositionElements) 6118 6125 { … … 6124 6131 } 6125 6132 6126 RegionDocument::absoluteRegionForEventTargets(const EventTargetSet* targets)6133 Document::RegionFixedPair Document::absoluteRegionForEventTargets(const EventTargetSet* targets) 6127 6134 { 6128 6135 if (!targets) 6129 return Region ();6136 return RegionFixedPair(Region(), false); 6130 6137 6131 6138 Region targetRegion; … … 6150 6157 } 6151 6158 6152 return targetRegion;6159 return RegionFixedPair(targetRegion, insideFixedPosition); 6153 6160 } 6154 6161 -
trunk/Source/WebCore/dom/Document.h
r182215 r182242 1123 1123 void initDNSPrefetch(); 1124 1124 1125 unsigned wheelEventHandlerCount() const { return m_wheelEventHandlerCount; }1126 1125 void didAddWheelEventHandler(Node&); 1127 1126 void didRemoveWheelEventHandler(Node&); … … 1135 1134 bool hasTouchEventHandlers() const { return false; } 1136 1135 #endif 1136 1137 // Used for testing. Count handlers in the main document, and one per frame which contains handlers. 1138 WEBCORE_EXPORT unsigned wheelEventHandlerCount() const; 1139 WEBCORE_EXPORT unsigned touchEventHandlerCount() const; 1137 1140 1138 1141 void didAddTouchEventHandler(Node&); … … 1152 1155 const EventTargetSet* wheelEventTargets() const { return m_wheelEventTargets.get(); } 1153 1156 1154 Region absoluteRegionForEventTargets(const EventTargetSet*); 1157 typedef std::pair<Region, bool> RegionFixedPair; 1158 RegionFixedPair absoluteRegionForEventTargets(const EventTargetSet*); 1155 1159 1156 1160 LayoutRect absoluteEventHandlerBounds(bool&) override final; … … 1320 1324 1321 1325 void didAssociateFormControlsTimerFired(); 1326 1327 void wheelEventHandlersChanged(); 1322 1328 1323 1329 // DOM Cookies caching. … … 1565 1571 unsigned m_writeRecursionDepth; 1566 1572 1567 unsigned m_wheelEventHandlerCount;1568 1573 #if ENABLE(TOUCH_EVENTS) 1569 1574 std::unique_ptr<EventTargetSet> m_touchEventTargets; -
trunk/Source/WebCore/loader/EmptyClients.h
r180517 r182242 228 228 #endif 229 229 230 virtual void numWheelEventHandlersChanged(unsigned) override { }230 virtual void wheelEventHandlersChanged(bool) override { } 231 231 232 232 virtual bool isEmptyChromeClient() const override { return true; } -
trunk/Source/WebCore/page/ChromeClient.h
r181656 r182242 397 397 virtual bool shouldRunModalDialogDuringPageDismissal(const DialogType&, const String& dialogMessage, FrameLoader::PageDismissalType) const { UNUSED_PARAM(dialogMessage); return true; } 398 398 399 virtual void numWheelEventHandlersChanged(unsigned) = 0;399 virtual void wheelEventHandlersChanged(bool hasHandlers) = 0; 400 400 401 401 virtual bool isSVGImageChromeClient() const { return false; } -
trunk/Source/WebCore/page/DebugPageOverlays.cpp
r182215 r182242 91 91 bool MouseWheelRegionOverlay::updateRegion() 92 92 { 93 std::unique_ptr<Region> region = std::make_unique<Region>(m_frame.document()->absoluteRegionForEventTargets(m_frame.document()->wheelEventTargets()) );93 std::unique_ptr<Region> region = std::make_unique<Region>(m_frame.document()->absoluteRegionForEventTargets(m_frame.document()->wheelEventTargets()).first); 94 94 95 95 bool regionChanged = !m_region || !(*m_region == *region); -
trunk/Source/WebCore/page/scrolling/AsyncScrollingCoordinator.cpp
r182132 r182242 136 136 return; 137 137 138 // FIXME: computeNonFastScrollableRegion lazily. 138 139 m_scrollingStateTree->rootStateNode()->setNonFastScrollableRegion(computeNonFastScrollableRegion(m_page->mainFrame(), IntPoint())); 139 140 } … … 488 489 } 489 490 490 void AsyncScrollingCoordinator::recomputeWheelEventHandlerCountForFrameView(FrameView& frameView)491 {492 ScrollingStateFrameScrollingNode* node = downcast<ScrollingStateFrameScrollingNode>(m_scrollingStateTree->stateNodeForID(frameView.scrollLayerID()));493 if (!node)494 return;495 node->setWheelEventHandlerCount(computeCurrentWheelEventHandlerCount());496 }497 498 491 bool AsyncScrollingCoordinator::isRubberBandInProgress() const 499 492 { -
trunk/Source/WebCore/page/scrolling/AsyncScrollingCoordinator.h
r182132 r182242 97 97 WEBCORE_EXPORT virtual void scrollableAreaScrollbarLayerDidChange(ScrollableArea&, ScrollbarOrientation) override; 98 98 99 WEBCORE_EXPORT virtual void recomputeWheelEventHandlerCountForFrameView(FrameView&) override;100 99 WEBCORE_EXPORT virtual void setSynchronousScrollingReasons(SynchronousScrollingReasons) override; 101 100 -
trunk/Source/WebCore/page/scrolling/ScrollingCoordinator.cpp
r182215 r182242 155 155 156 156 // Include wheel event handler region for the main frame. 157 Region wheelHandlerRegion = frame.document()->absoluteRegionForEventTargets(frame.document()->wheelEventTargets()); 158 wheelHandlerRegion.translate(toIntSize(offset)); 159 nonFastScrollableRegion.unite(wheelHandlerRegion); 157 Document::RegionFixedPair wheelHandlerRegion = frame.document()->absoluteRegionForEventTargets(frame.document()->wheelEventTargets()); 158 bool wheelHandlerInFixedContent = wheelHandlerRegion.second; 159 if (wheelHandlerInFixedContent) { 160 // FIXME: if a fixed element has a wheel event handler, for now just cover the entire document 161 // with the slow-scrolling region. This could be improved. 162 // FIXME: need to handle position:sticky here too. 163 bool inFixed; 164 wheelHandlerRegion.first.unite(enclosingIntRect(frame.document()->absoluteEventHandlerBounds(inFixed))); 165 } 166 wheelHandlerRegion.first.translate(toIntSize(offset)); 167 nonFastScrollableRegion.unite(wheelHandlerRegion.first); 160 168 161 169 return nonFastScrollableRegion; … … 163 171 } 164 172 165 unsigned ScrollingCoordinator::computeCurrentWheelEventHandlerCount() 166 { 167 unsigned wheelEventHandlerCount = 0; 168 169 for (Frame* frame = &m_page->mainFrame(); frame; frame = frame->tree().traverseNext()) { 170 if (frame->document()) 171 wheelEventHandlerCount += frame->document()->wheelEventHandlerCount(); 172 } 173 174 return wheelEventHandlerCount; 175 } 176 177 void ScrollingCoordinator::frameViewWheelEventHandlerCountChanged(FrameView& frameView) 173 void ScrollingCoordinator::frameViewHasSlowRepaintObjectsDidChange(FrameView& frameView) 178 174 { 179 175 ASSERT(isMainThread()); 180 176 ASSERT(m_page); 181 177 182 recomputeWheelEventHandlerCountForFrameView(frameView); 183 } 184 185 void ScrollingCoordinator::frameViewHasSlowRepaintObjectsDidChange(FrameView& frameView) 178 if (!coordinatesScrollingForFrameView(frameView)) 179 return; 180 181 updateSynchronousScrollingReasons(frameView); 182 } 183 184 void ScrollingCoordinator::frameViewFixedObjectsDidChange(FrameView& frameView) 186 185 { 187 186 ASSERT(isMainThread()); … … 194 193 } 195 194 196 void ScrollingCoordinator::frameViewFixedObjectsDidChange(FrameView& frameView) 195 GraphicsLayer* ScrollingCoordinator::scrollLayerForScrollableArea(ScrollableArea& scrollableArea) 196 { 197 return scrollableArea.layerForScrolling(); 198 } 199 200 GraphicsLayer* ScrollingCoordinator::scrollLayerForFrameView(FrameView& frameView) 201 { 202 if (RenderView* renderView = frameView.frame().contentRenderer()) 203 return renderView->compositor().scrollLayer(); 204 return nullptr; 205 } 206 207 GraphicsLayer* ScrollingCoordinator::headerLayerForFrameView(FrameView& frameView) 208 { 209 #if ENABLE(RUBBER_BANDING) 210 if (RenderView* renderView = frameView.frame().contentRenderer()) 211 return renderView->compositor().headerLayer(); 212 return nullptr; 213 #else 214 UNUSED_PARAM(frameView); 215 return nullptr; 216 #endif 217 } 218 219 GraphicsLayer* ScrollingCoordinator::footerLayerForFrameView(FrameView& frameView) 220 { 221 #if ENABLE(RUBBER_BANDING) 222 if (RenderView* renderView = frameView.frame().contentRenderer()) 223 return renderView->compositor().footerLayer(); 224 return nullptr; 225 #else 226 UNUSED_PARAM(frameView); 227 return nullptr; 228 #endif 229 } 230 231 GraphicsLayer* ScrollingCoordinator::counterScrollingLayerForFrameView(FrameView& frameView) 232 { 233 if (RenderView* renderView = frameView.frame().contentRenderer()) 234 return renderView->compositor().fixedRootBackgroundLayer(); 235 return nullptr; 236 } 237 238 GraphicsLayer* ScrollingCoordinator::insetClipLayerForFrameView(FrameView& frameView) 239 { 240 if (RenderView* renderView = frameView.frame().contentRenderer()) 241 return renderView->compositor().clipLayer(); 242 return nullptr; 243 } 244 245 GraphicsLayer* ScrollingCoordinator::contentShadowLayerForFrameView(FrameView& frameView) 246 { 247 #if ENABLE(RUBBER_BANDING) 248 if (RenderView* renderView = frameView.frame().contentRenderer()) 249 return renderView->compositor().layerForContentShadow(); 250 251 return nullptr; 252 #else 253 UNUSED_PARAM(frameView); 254 return nullptr; 255 #endif 256 } 257 258 GraphicsLayer* ScrollingCoordinator::rootContentLayerForFrameView(FrameView& frameView) 259 { 260 if (RenderView* renderView = frameView.frame().contentRenderer()) 261 return renderView->compositor().rootContentLayer(); 262 return nullptr; 263 } 264 265 void ScrollingCoordinator::frameViewRootLayerDidChange(FrameView& frameView) 197 266 { 198 267 ASSERT(isMainThread()); … … 202 271 return; 203 272 204 updateSynchronousScrollingReasons(frameView);205 }206 207 GraphicsLayer* ScrollingCoordinator::scrollLayerForScrollableArea(ScrollableArea& scrollableArea)208 {209 return scrollableArea.layerForScrolling();210 }211 212 GraphicsLayer* ScrollingCoordinator::scrollLayerForFrameView(FrameView& frameView)213 {214 if (RenderView* renderView = frameView.frame().contentRenderer())215 return renderView->compositor().scrollLayer();216 return nullptr;217 }218 219 GraphicsLayer* ScrollingCoordinator::headerLayerForFrameView(FrameView& frameView)220 {221 #if ENABLE(RUBBER_BANDING)222 if (RenderView* renderView = frameView.frame().contentRenderer())223 return renderView->compositor().headerLayer();224 return nullptr;225 #else226 UNUSED_PARAM(frameView);227 return nullptr;228 #endif229 }230 231 GraphicsLayer* ScrollingCoordinator::footerLayerForFrameView(FrameView& frameView)232 {233 #if ENABLE(RUBBER_BANDING)234 if (RenderView* renderView = frameView.frame().contentRenderer())235 return renderView->compositor().footerLayer();236 return nullptr;237 #else238 UNUSED_PARAM(frameView);239 return nullptr;240 #endif241 }242 243 GraphicsLayer* ScrollingCoordinator::counterScrollingLayerForFrameView(FrameView& frameView)244 {245 if (RenderView* renderView = frameView.frame().contentRenderer())246 return renderView->compositor().fixedRootBackgroundLayer();247 return nullptr;248 }249 250 GraphicsLayer* ScrollingCoordinator::insetClipLayerForFrameView(FrameView& frameView)251 {252 if (RenderView* renderView = frameView.frame().contentRenderer())253 return renderView->compositor().clipLayer();254 return nullptr;255 }256 257 GraphicsLayer* ScrollingCoordinator::contentShadowLayerForFrameView(FrameView& frameView)258 {259 #if ENABLE(RUBBER_BANDING)260 if (RenderView* renderView = frameView.frame().contentRenderer())261 return renderView->compositor().layerForContentShadow();262 263 return nullptr;264 #else265 UNUSED_PARAM(frameView);266 return nullptr;267 #endif268 }269 270 GraphicsLayer* ScrollingCoordinator::rootContentLayerForFrameView(FrameView& frameView)271 {272 if (RenderView* renderView = frameView.frame().contentRenderer())273 return renderView->compositor().rootContentLayer();274 return nullptr;275 }276 277 void ScrollingCoordinator::frameViewRootLayerDidChange(FrameView& frameView)278 {279 ASSERT(isMainThread());280 ASSERT(m_page);281 282 if (!coordinatesScrollingForFrameView(frameView))283 return;284 285 273 frameViewLayoutUpdated(frameView); 286 recomputeWheelEventHandlerCountForFrameView(frameView);287 274 updateSynchronousScrollingReasons(frameView); 288 275 } -
trunk/Source/WebCore/page/scrolling/ScrollingCoordinator.h
r182132 r182242 121 121 virtual void frameViewLayoutUpdated(FrameView&) { } 122 122 123 // Should be called whenever a wheel event handler is added or removed in the124 // frame view's underlying document.125 void frameViewWheelEventHandlerCountChanged(FrameView&);126 127 123 // Should be called whenever the slow repaint objects counter changes between zero and one. 128 124 void frameViewHasSlowRepaintObjectsDidChange(FrameView&); … … 211 207 static GraphicsLayer* scrollLayerForScrollableArea(ScrollableArea&); 212 208 213 unsigned computeCurrentWheelEventHandlerCount();214 209 GraphicsLayer* scrollLayerForFrameView(FrameView&); 215 210 GraphicsLayer* counterScrollingLayerForFrameView(FrameView&); … … 223 218 224 219 private: 225 virtual void recomputeWheelEventHandlerCountForFrameView(FrameView&) { }226 220 virtual void setSynchronousScrollingReasons(SynchronousScrollingReasons) { } 227 221 -
trunk/Source/WebCore/page/scrolling/ScrollingStateFrameScrollingNode.cpp
r180493 r182242 46 46 #endif 47 47 , m_frameScaleFactor(1) 48 , m_wheelEventHandlerCount(0)49 48 , m_synchronousScrollingReasons(0) 50 49 , m_behaviorForFixed(StickToDocumentBounds) … … 64 63 , m_nonFastScrollableRegion(stateNode.nonFastScrollableRegion()) 65 64 , m_frameScaleFactor(stateNode.frameScaleFactor()) 66 , m_wheelEventHandlerCount(stateNode.wheelEventHandlerCount())67 65 , m_synchronousScrollingReasons(stateNode.synchronousScrollingReasons()) 68 66 , m_behaviorForFixed(stateNode.scrollBehaviorForFixedElements()) … … 118 116 m_nonFastScrollableRegion = nonFastScrollableRegion; 119 117 setPropertyChanged(NonFastScrollableRegion); 120 }121 122 void ScrollingStateFrameScrollingNode::setWheelEventHandlerCount(unsigned wheelEventHandlerCount)123 {124 if (m_wheelEventHandlerCount == wheelEventHandlerCount)125 return;126 127 m_wheelEventHandlerCount = wheelEventHandlerCount;128 setPropertyChanged(WheelEventHandlerCount);129 118 } 130 119 -
trunk/Source/WebCore/page/scrolling/ScrollingStateFrameScrollingNode.h
r176915 r182242 50 50 FrameScaleFactor = NumScrollingStateNodeBits, 51 51 NonFastScrollableRegion, 52 WheelEventHandlerCount,53 52 ReasonsForSynchronousScrolling, 54 53 ScrolledContentsLayer, … … 70 69 const Region& nonFastScrollableRegion() const { return m_nonFastScrollableRegion; } 71 70 WEBCORE_EXPORT void setNonFastScrollableRegion(const Region&); 72 73 unsigned wheelEventHandlerCount() const { return m_wheelEventHandlerCount; }74 WEBCORE_EXPORT void setWheelEventHandlerCount(unsigned);75 71 76 72 SynchronousScrollingReasons synchronousScrollingReasons() const { return m_synchronousScrollingReasons; } … … 140 136 Region m_nonFastScrollableRegion; 141 137 float m_frameScaleFactor; 142 unsigned m_wheelEventHandlerCount;143 138 SynchronousScrollingReasons m_synchronousScrollingReasons; 144 139 ScrollBehaviorForFixedElements m_behaviorForFixed; -
trunk/Source/WebCore/page/scrolling/ScrollingTree.cpp
r177835 r182242 39 39 40 40 ScrollingTree::ScrollingTree() 41 : m_hasWheelEventHandlers(false) 42 , m_rubberBandsAtLeft(true) 41 : m_rubberBandsAtLeft(true) 43 42 , m_rubberBandsAtRight(true) 44 43 , m_rubberBandsAtTop(true) … … 66 65 MutexLocker lock(m_mutex); 67 66 68 if (m_hasWheelEventHandlers)69 return true;70 71 67 bool shouldSetLatch = wheelEvent.shouldConsiderLatching(); 72 68 … … 130 126 if (rootNode 131 127 && (rootStateNodeChanged 132 || rootNode->hasChangedProperty(ScrollingStateFrameScrollingNode::WheelEventHandlerCount)133 128 || rootNode->hasChangedProperty(ScrollingStateFrameScrollingNode::NonFastScrollableRegion) 134 129 || rootNode->hasChangedProperty(ScrollingStateNode::ScrollLayer))) { … … 137 132 if (rootStateNodeChanged || rootNode->hasChangedProperty(ScrollingStateNode::ScrollLayer)) 138 133 m_mainFrameScrollPosition = FloatPoint(); 139 if (rootStateNodeChanged || rootNode->hasChangedProperty(ScrollingStateFrameScrollingNode::WheelEventHandlerCount))140 m_hasWheelEventHandlers = scrollingStateTree->rootStateNode()->wheelEventHandlerCount();141 134 if (rootStateNodeChanged || rootNode->hasChangedProperty(ScrollingStateFrameScrollingNode::NonFastScrollableRegion)) 142 135 m_nonFastScrollableRegion = scrollingStateTree->rootStateNode()->nonFastScrollableRegion(); -
trunk/Source/WebCore/page/scrolling/ScrollingTree.h
r180493 r182242 157 157 Region m_nonFastScrollableRegion; 158 158 FloatPoint m_mainFrameScrollPosition; 159 bool m_hasWheelEventHandlers;160 159 161 160 Mutex m_swipeStateMutex; -
trunk/Source/WebCore/page/scrolling/mac/ScrollingCoordinatorMac.mm
r182132 r182242 145 145 if (shouldUpdateScrollLayerPositionSynchronously()) 146 146 indicatorMode = SynchronousScrollingBecauseOfStyleIndication; 147 else if (scrollingStateTree()->rootStateNode() && scrollingStateTree()->rootStateNode()->wheelEventHandlerCount())148 indicatorMode = SynchronousScrollingBecauseOfEventHandlersIndication;149 147 else 150 148 indicatorMode = AsyncScrollingIndication; -
trunk/Source/WebCore/page/scrolling/mac/ScrollingTreeFrameScrollingNodeMac.mm
r181813 r182242 48 48 49 49 static void logThreadedScrollingMode(unsigned synchronousScrollingReasons); 50 static void logWheelEventHandlerCountChanged(unsigned);51 52 50 53 51 PassRefPtr<ScrollingTreeFrameScrollingNode> ScrollingTreeFrameScrollingNodeMac::create(ScrollingTree& scrollingTree, ScrollingNodeID nodeID) … … 134 132 } 135 133 136 if (scrollingStateNode.hasChangedProperty(ScrollingStateFrameScrollingNode::WheelEventHandlerCount)) {137 if (scrollingTree().scrollingPerformanceLoggingEnabled())138 logWheelEventHandlerCountChanged(scrollingStateNode.wheelEventHandlerCount());139 }140 141 134 #if ENABLE(CSS_SCROLL_SNAP) 142 135 if (scrollingStateNode.hasChangedProperty(ScrollingStateFrameScrollingNode::HorizontalSnapOffsets)) … … 544 537 } 545 538 546 void logWheelEventHandlerCountChanged(unsigned count)547 {548 WTFLogAlways("SCROLLING: Wheel event handler count changed. Time: %f Count: %u\n", WTF::monotonicallyIncreasingTime(), count);549 }550 551 539 #if ENABLE(CSS_SCROLL_SNAP) && PLATFORM(MAC) 552 540 LayoutUnit ScrollingTreeFrameScrollingNodeMac::scrollOffsetOnAxis(ScrollEventAxis axis) const -
trunk/Source/WebCore/testing/Internals.cpp
r182152 r182242 1255 1255 } 1256 1256 1257 auto touchHandlers = document->touchEventTargets(); 1258 if (!touchHandlers) 1259 return 0; 1260 1261 unsigned count = 0; 1262 for (auto& handler : *touchHandlers) 1263 count += handler.value; 1264 1265 return count; 1257 return document->touchEventHandlerCount(); 1266 1258 } 1267 1259 -
trunk/Source/WebKit/mac/ChangeLog
r182217 r182242 1 2015-03-31 Simon Fraser <simon.fraser@apple.com> 2 3 Remove scrolling tree dependency on wheel event handler counts, and use fast scrolling even when there are wheel handlers 4 https://bugs.webkit.org/show_bug.cgi?id=143288 5 6 Reviewed by Beth Dakin. 7 8 Remove the wheel event counting that Document does, and passes into the scrolling tree. 9 The ScrollingTree now just uses the non-fast scrollable region to determine when to 10 fast scroll on pages with wheel event handlers. 11 12 * WebCoreSupport/WebChromeClient.h: 13 1 14 2015-03-31 Timothy Horton <timothy_horton@apple.com> 2 15 -
trunk/Source/WebKit/mac/WebCoreSupport/WebChromeClient.h
r181838 r182242 196 196 virtual PassRefPtr<WebCore::SearchPopupMenu> createSearchPopupMenu(WebCore::PopupMenuClient*) const override; 197 197 198 virtual void numWheelEventHandlersChanged(unsigned) override { }198 virtual void wheelEventHandlersChanged(bool) override { } 199 199 200 200 #if ENABLE(SUBTLE_CRYPTO) -
trunk/Source/WebKit2/ChangeLog
r182219 r182242 1 2015-03-31 Simon Fraser <simon.fraser@apple.com> 2 3 Remove scrolling tree dependency on wheel event handler counts, and use fast scrolling even when there are wheel handlers 4 https://bugs.webkit.org/show_bug.cgi?id=143288 5 rdar://problem/16049624 6 7 Reviewed by Beth Dakin. 8 9 Remove the wheel event counting that Document does, and passes into the scrolling tree. 10 The ScrollingTree now just uses the non-fast scrollable region to determine when to 11 fast scroll on pages with wheel event handlers. 12 13 If a handler includes position:fixed renderers, we just cover the whole document 14 with the slow-scrolling region currently. This could be improved. 15 16 * Shared/Scrolling/RemoteScrollingCoordinatorTransaction.cpp: 17 (ArgumentCoder<ScrollingStateFrameScrollingNode>::encode): 18 (ArgumentCoder<ScrollingStateFrameScrollingNode>::decode): 19 (WebKit::RemoteScrollingTreeTextStream::dump): 20 * WebProcess/WebCoreSupport/WebChromeClient.cpp: 21 (WebKit::WebChromeClient::wheelEventHandlersChanged): 22 (WebKit::WebChromeClient::numWheelEventHandlersChanged): Deleted. 23 * WebProcess/WebCoreSupport/WebChromeClient.h: 24 * WebProcess/WebPage/WebPage.cpp: 25 (WebKit::WebPage::WebPage): 26 (WebKit::WebPage::wheelEventHandlersChanged): 27 (WebKit::WebPage::recomputeShortCircuitHorizontalWheelEventsState): 28 (WebKit::WebPage::numWheelEventHandlersChanged): Deleted. 29 * WebProcess/WebPage/WebPage.h: 30 1 31 2015-03-31 Dan Bernstein <mitz@apple.com> 2 32 -
trunk/Source/WebKit2/Shared/Scrolling/RemoteScrollingCoordinatorTransaction.cpp
r177835 r182242 144 144 SCROLLING_NODE_ENCODE(ScrollingStateFrameScrollingNode::FrameScaleFactor, frameScaleFactor) 145 145 SCROLLING_NODE_ENCODE(ScrollingStateFrameScrollingNode::NonFastScrollableRegion, nonFastScrollableRegion) 146 SCROLLING_NODE_ENCODE(ScrollingStateFrameScrollingNode::WheelEventHandlerCount, wheelEventHandlerCount)147 146 SCROLLING_NODE_ENCODE(ScrollingStateFrameScrollingNode::ReasonsForSynchronousScrolling, synchronousScrollingReasons) 148 147 SCROLLING_NODE_ENCODE_ENUM(ScrollingStateFrameScrollingNode::BehaviorForFixedElements, scrollBehaviorForFixedElements) … … 226 225 SCROLLING_NODE_DECODE(ScrollingStateFrameScrollingNode::FrameScaleFactor, float, setFrameScaleFactor); 227 226 SCROLLING_NODE_DECODE(ScrollingStateFrameScrollingNode::NonFastScrollableRegion, Region, setNonFastScrollableRegion); 228 SCROLLING_NODE_DECODE(ScrollingStateFrameScrollingNode::WheelEventHandlerCount, int, setWheelEventHandlerCount);229 227 SCROLLING_NODE_DECODE(ScrollingStateFrameScrollingNode::ReasonsForSynchronousScrolling, SynchronousScrollingReasons, setSynchronousScrollingReasons); 230 228 SCROLLING_NODE_DECODE_ENUM(ScrollingStateFrameScrollingNode::BehaviorForFixedElements, ScrollBehaviorForFixedElements, setScrollBehaviorForFixedElements); … … 621 619 } 622 620 623 // FIXME: dump wheelEventHandlerCount624 621 // FIXME: dump synchronousScrollingReasons 625 622 // FIXME: dump scrollableAreaParameters -
trunk/Source/WebKit2/WebProcess/WebCoreSupport/WebChromeClient.cpp
r181656 r182242 991 991 } 992 992 993 void WebChromeClient:: numWheelEventHandlersChanged(unsigned count)994 { 995 m_page-> numWheelEventHandlersChanged(count);993 void WebChromeClient::wheelEventHandlersChanged(bool hasHandlers) 994 { 995 m_page->wheelEventHandlersChanged(hasHandlers); 996 996 } 997 997 -
trunk/Source/WebKit2/WebProcess/WebCoreSupport/WebChromeClient.h
r181656 r182242 281 281 virtual void pageExtendedBackgroundColorDidChange(WebCore::Color) const override; 282 282 283 virtual void numWheelEventHandlersChanged(unsigned) override;283 virtual void wheelEventHandlersChanged(bool) override; 284 284 285 285 virtual String plugInStartLabelTitle(const String& mimeType) const override; -
trunk/Source/WebKit2/WebProcess/WebPage/WebPage.cpp
r181986 r182242 305 305 , m_cachedMainFrameIsPinnedToBottomSide(true) 306 306 , m_canShortCircuitHorizontalWheelEvents(false) 307 , m_ numWheelEventHandlers(0)307 , m_hasWheelEventHandlers(false) 308 308 , m_cachedPageCount(0) 309 309 , m_autoSizingShouldExpandToViewHeight(false) … … 4056 4056 } 4057 4057 4058 void WebPage:: numWheelEventHandlersChanged(unsigned numWheelEventHandlers)4059 { 4060 if (m_ numWheelEventHandlers == numWheelEventHandlers)4061 return; 4062 4063 m_ numWheelEventHandlers = numWheelEventHandlers;4058 void WebPage::wheelEventHandlersChanged(bool hasHandlers) 4059 { 4060 if (m_hasWheelEventHandlers == hasHandlers) 4061 return; 4062 4063 m_hasWheelEventHandlers = hasHandlers; 4064 4064 recomputeShortCircuitHorizontalWheelEventsState(); 4065 4065 } … … 4104 4104 void WebPage::recomputeShortCircuitHorizontalWheelEventsState() 4105 4105 { 4106 bool canShortCircuitHorizontalWheelEvents = !m_ numWheelEventHandlers;4106 bool canShortCircuitHorizontalWheelEvents = !m_hasWheelEventHandlers; 4107 4107 4108 4108 if (canShortCircuitHorizontalWheelEvents) { -
trunk/Source/WebKit2/WebProcess/WebPage/WebPage.h
r181972 r182242 761 761 void wheelEvent(const WebWheelEvent&); 762 762 763 void numWheelEventHandlersChanged(unsigned);763 void wheelEventHandlersChanged(bool); 764 764 void recomputeShortCircuitHorizontalWheelEventsState(); 765 765 … … 1264 1264 bool m_cachedMainFrameIsPinnedToBottomSide; 1265 1265 bool m_canShortCircuitHorizontalWheelEvents; 1266 unsigned m_numWheelEventHandlers;1266 bool m_hasWheelEventHandlers; 1267 1267 1268 1268 unsigned m_cachedPageCount;
Note:
See TracChangeset
for help on using the changeset viewer.