Index: Source/core/editing/iterators/FullyClippedStateStack.cpp |
diff --git a/Source/core/editing/iterators/FullyClippedStateStack.cpp b/Source/core/editing/iterators/FullyClippedStateStack.cpp |
index 4d187e160e48f451451eac0e282089c544ec89f9..e54f8bd8752babf08a2c471ae014bcbc70c7ece3 100644 |
--- a/Source/core/editing/iterators/FullyClippedStateStack.cpp |
+++ b/Source/core/editing/iterators/FullyClippedStateStack.cpp |
@@ -24,7 +24,7 @@ static unsigned depthCrossingShadowBoundaries(Node* node) |
static inline bool fullyClipsContents(Node* node) |
{ |
- LayoutObject* renderer = node->renderer(); |
+ LayoutObject* renderer = node->layoutObject(); |
if (!renderer || !renderer->isBox() || !renderer->hasOverflowClip()) |
return false; |
return toLayoutBox(renderer)->size().isEmpty(); |
@@ -32,7 +32,7 @@ static inline bool fullyClipsContents(Node* node) |
static inline bool ignoresContainerClip(Node* node) |
{ |
- LayoutObject* renderer = node->renderer(); |
+ LayoutObject* renderer = node->layoutObject(); |
if (!renderer || renderer->isText()) |
return false; |
return renderer->style()->hasOutOfFlowPosition(); |