| Index: Source/core/editing/RenderedPosition.cpp
|
| diff --git a/Source/core/editing/RenderedPosition.cpp b/Source/core/editing/RenderedPosition.cpp
|
| index eb34af25a5e9278577e4a6a5a4038dc674fd40de..cc7acdaf25e7b21149ad073d0b340f34cdf5f6e2 100644
|
| --- a/Source/core/editing/RenderedPosition.cpp
|
| +++ b/Source/core/editing/RenderedPosition.cpp
|
| @@ -92,7 +92,7 @@ RenderedPosition::RenderedPosition(const Position& position, TextAffinity affini
|
| {
|
| if (position.isNull())
|
| return;
|
| - InlineBoxPosition boxPosition = position.computeInlineBoxPosition(affinity);
|
| + InlineBoxPosition boxPosition = computeInlineBoxPosition(position, affinity);
|
| m_inlineBox = boxPosition.inlineBox;
|
| m_offset = boxPosition.offsetInBox;
|
| if (m_inlineBox)
|
|
|