Index: Source/core/editing/RenderedPosition.cpp |
diff --git a/Source/core/editing/RenderedPosition.cpp b/Source/core/editing/RenderedPosition.cpp |
index 692951e7b218f94117df2565400b29582c7e07be..983f61ed826b3afda65556c3eb73116509021b6f 100644 |
--- a/Source/core/editing/RenderedPosition.cpp |
+++ b/Source/core/editing/RenderedPosition.cpp |
@@ -74,7 +74,7 @@ RenderedPosition::RenderedPosition(const VisiblePosition& position) |
{ |
if (position.isNull()) |
return; |
- InlineBoxPosition boxPosition = position.computeInlineBoxPosition(); |
+ InlineBoxPosition boxPosition = computeInlineBoxPosition(position); |
m_inlineBox = boxPosition.inlineBox; |
m_offset = boxPosition.offsetInBox; |
if (m_inlineBox) |