Changeset 242830 in webkit
- Timestamp:
- Mar 12, 2019, 3:35:36 PM (6 years ago)
- Location:
- trunk/Source/WebCore
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/ChangeLog
r242826 r242830 1 2019-03-12 Antti Koivisto <antti@apple.com> 2 3 Compositing layer that renders two positioned elements should not hit test 4 https://bugs.webkit.org/show_bug.cgi?id=195371 5 <rdar://problem/48649586> 6 7 Reviewed by Simon Fraser. 8 9 Followup to fix the test case (fast/scrolling/ios/overflow-scroll-overlap-2.html) 10 11 * platform/graphics/ca/GraphicsLayerCA.cpp: 12 (WebCore::GraphicsLayerCA::setEventRegion): 13 14 Revert a last minute change (that was done to fix a Mac displaylist test). 15 16 * rendering/RenderLayerBacking.cpp: 17 (WebCore::RenderLayerBacking::paintIntoLayer): 18 19 Compute the region on iOS only for now (it is not used on other platforms). 20 1 21 2019-03-12 Dean Jackson <dino@apple.com> 2 22 -
trunk/Source/WebCore/platform/graphics/ca/GraphicsLayerCA.cpp
r242794 r242830 991 991 992 992 GraphicsLayer::setEventRegion(WTFMove(eventRegion)); 993 noteLayerPropertyChanged(EventRegionChanged, DontScheduleFlush);993 noteLayerPropertyChanged(EventRegionChanged, m_isCommittingChanges ? DontScheduleFlush : ScheduleFlush); 994 994 } 995 995 -
trunk/Source/WebCore/rendering/RenderLayerBacking.cpp
r242794 r242830 2577 2577 RenderLayer::LayerPaintingInfo paintingInfo(&m_owningLayer, paintDirtyRect, paintBehavior, -m_subpixelOffsetFromRenderer); 2578 2578 2579 #if PLATFORM(IOS_FAMILY) 2579 2580 auto eventRegion = std::make_unique<Region>(); 2580 2581 paintingInfo.eventRegion = eventRegion.get(); 2582 #endif 2581 2583 2582 2584 m_owningLayer.paintLayerContents(context, paintingInfo, paintFlags); 2583 2585 2586 #if PLATFORM(IOS_FAMILY) 2584 2587 paintingInfo.eventRegion = nullptr; 2585 2588 // Use null event region to indicate the entire layer is sensitive to events (the common case). … … 2590 2593 eventRegion->translate(roundedIntSize(contentOffsetInCompositingLayer())); 2591 2594 m_graphicsLayer->setEventRegion(WTFMove(eventRegion)); 2595 #endif 2592 2596 2593 2597 if (m_owningLayer.containsDirtyOverlayScrollbars())
Note:
See TracChangeset
for help on using the changeset viewer.