Changeset 245208 in webkit
- Timestamp:
- May 11, 2019, 3:22:34 PM (6 years ago)
- Location:
- trunk
- Files:
-
- 8 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/LayoutTests/ChangeLog ¶
r245207 r245208 1 2019-05-11 Simon Fraser <simon.fraser@apple.com> 2 3 Layer bounds are incorrect for sharing layers that paint with transforms 4 https://bugs.webkit.org/show_bug.cgi?id=197768 5 <rdar://problem/50695493> 6 7 Reviewed by Zalan Bujtas. 8 9 Tests for backing-shared layer bounds in various configurations. 10 11 * compositing/shared-backing/sharing-bounds-clip-expected.txt: Added. 12 * compositing/shared-backing/sharing-bounds-clip.html: Added. 13 * compositing/shared-backing/sharing-bounds-expected.txt: Added. 14 * compositing/shared-backing/sharing-bounds-non-clipping-shared-layer-expected.txt: Added. 15 * compositing/shared-backing/sharing-bounds-non-clipping-shared-layer.html: Added. 16 * compositing/shared-backing/sharing-bounds-transformed-sharing-layer-expected.txt: Added. 17 * compositing/shared-backing/sharing-bounds-transformed-sharing-layer.html: Added. 18 * compositing/shared-backing/sharing-bounds.html: Added. 19 1 20 2019-05-11 Simon Fraser <simon.fraser@apple.com> 2 21 -
TabularUnified trunk/Source/WebCore/ChangeLog ¶
r245207 r245208 1 2019-05-11 Simon Fraser <simon.fraser@apple.com> 2 3 Layer bounds are incorrect for sharing layers that paint with transforms 4 https://bugs.webkit.org/show_bug.cgi?id=197768 5 <rdar://problem/50695493> 6 7 Reviewed by Zalan Bujtas. 8 9 We don't need to traverse shared layers if the backing-provider has overflow clip, 10 because we know they are containing-block descendants and therefore clipped. 11 12 Note tha the CSS "clip" property doesn't guarantee this, because the clip rect 13 can be larger than the element, so in that case we just traverse shared layers. 14 15 Tests: compositing/shared-backing/sharing-bounds-clip.html 16 compositing/shared-backing/sharing-bounds-non-clipping-shared-layer.html 17 compositing/shared-backing/sharing-bounds-transformed-sharing-layer.html 18 compositing/shared-backing/sharing-bounds.html 19 20 * rendering/RenderLayerBacking.cpp: 21 (WebCore::RenderLayerBacking::updateCompositedBounds): 22 1 23 2019-05-11 Simon Fraser <simon.fraser@apple.com> 2 24 -
TabularUnified trunk/Source/WebCore/rendering/RenderLayerBacking.cpp ¶
r245207 r245208 672 672 } 673 673 674 for (auto& layerWeakPtr : m_backingSharingLayers) { 675 auto* boundsRootLayer = &m_owningLayer; 676 ASSERT(layerWeakPtr->isDescendantOf(m_owningLayer)); 677 auto offset = layerWeakPtr->offsetFromAncestor(&m_owningLayer); 678 auto bounds = layerWeakPtr->calculateLayerBounds(boundsRootLayer, offset, RenderLayer::defaultCalculateLayerBoundsFlags() | RenderLayer::ExcludeHiddenDescendants | RenderLayer::DontConstrainForMask); 679 layerBounds.unite(bounds); 674 // If the backing provider has overflow:clip, we know all sharing layers are affected by the clip because they are containing-block descendants. 675 if (!renderer().hasOverflowClip()) { 676 for (auto& layerWeakPtr : m_backingSharingLayers) { 677 auto* boundsRootLayer = &m_owningLayer; 678 ASSERT(layerWeakPtr->isDescendantOf(m_owningLayer)); 679 auto offset = layerWeakPtr->offsetFromAncestor(&m_owningLayer); 680 auto bounds = layerWeakPtr->calculateLayerBounds(boundsRootLayer, offset, RenderLayer::defaultCalculateLayerBoundsFlags() | RenderLayer::ExcludeHiddenDescendants | RenderLayer::DontConstrainForMask); 681 layerBounds.unite(bounds); 682 } 680 683 } 681 684
Note:
See TracChangeset
for help on using the changeset viewer.