| Index: Source/core/rendering/RenderLayer.h
|
| diff --git a/Source/core/rendering/RenderLayer.h b/Source/core/rendering/RenderLayer.h
|
| index 6fdca6636214d9a7325222244489653df40527d3..4e68c45abb2cffc92d965ad01e94fe1edf0d9359 100644
|
| --- a/Source/core/rendering/RenderLayer.h
|
| +++ b/Source/core/rendering/RenderLayer.h
|
| @@ -445,11 +445,11 @@ public:
|
| public:
|
| DescendantDependentCompositingInputs()
|
| : hasDescendantWithClipPath(false)
|
| - , hasDescendantWithBlendMode(false)
|
| + , hasNonIsolatedDescendantWithBlendMode(false)
|
| { }
|
|
|
| unsigned hasDescendantWithClipPath : 1;
|
| - unsigned hasDescendantWithBlendMode : 1;
|
| + unsigned hasNonIsolatedDescendantWithBlendMode : 1;
|
| };
|
|
|
| void setNeedsCompositingInputsUpdate();
|
| @@ -480,7 +480,7 @@ public:
|
| bool isUnclippedDescendant() const { return ancestorDependentCompositingInputs().isUnclippedDescendant; }
|
| bool hasAncestorWithClipPath() const { return ancestorDependentCompositingInputs().hasAncestorWithClipPath; }
|
| bool hasDescendantWithClipPath() const { return descendantDependentCompositingInputs().hasDescendantWithClipPath; }
|
| - bool hasDescendantWithBlendMode() const { return descendantDependentCompositingInputs().hasDescendantWithBlendMode; }
|
| + bool hasNonIsolatedDescendantWithBlendMode() const { return descendantDependentCompositingInputs().hasNonIsolatedDescendantWithBlendMode; }
|
|
|
| bool lostGroupedMapping() const { ASSERT(isAllowedToQueryCompositingState()); return m_lostGroupedMapping; }
|
| void setLostGroupedMapping(bool b) { m_lostGroupedMapping = b; }
|
|
|