RESOLVED DUPLICATE of bug 197695 197731
Sometimes we hit ASSERT(!parentClipRect.isInfinite()) in RenderLayerBacking::computeParentGraphicsLayerRect
https://bugs.webkit.org/show_bug.cgi?id=197731
Summary Sometimes we hit ASSERT(!parentClipRect.isInfinite()) in RenderLayerBacking::...
Simon Fraser (smfr)
Reported 2019-05-08 21:11:49 PDT
At webkit r245059, we sometimes assert at ASSERT(!parentClipRect.isInfinite()) in RenderLayerBacking::computeParentGraphicsLayerRect. I can reproduce this in DumpRenderTree with accessibility/media-element.html
Attachments
Simon Fraser (smfr)
Comment 1 2019-05-08 21:13:46 PDT
This code runs when we have a m_ancestorClippingLayer, and we make one based on the result of RenderLayerCompositor::clippedByAncestor(), which uses: layer.backgroundClipRect(RenderLayer::ClipRectsContext(computeClipRoot, TemporaryClipRects)).isInfinite() However, RenderLayerBacking::computeParentGraphicsLayerRect() is doing: ShouldRespectOverflowClip shouldRespectOverflowClip = compositedAncestor->isolatesCompositedBlending() ? RespectOverflowClip : IgnoreOverflowClip; RenderLayer::ClipRectsContext clipRectsContext(compositedAncestor, TemporaryClipRects, IgnoreOverlayScrollbarSize, shouldRespectOverflowClip); LayoutRect parentClipRect = m_owningLayer.backgroundClipRect(clipRectsContext).rect(); // FIXME: Incorrect for CSS regions. so 'shouldRespectOverflowClip' differs.
Simon Fraser (smfr)
Comment 2 2019-05-08 21:21:06 PDT
Simon Fraser (smfr)
Comment 3 2019-05-08 21:24:14 PDT
*** This bug has been marked as a duplicate of bug 197695 ***
Note You need to log in before you can comment on or make changes to this bug.