| Index: Source/core/editing/EditingUtilities.cpp
|
| diff --git a/Source/core/editing/EditingUtilities.cpp b/Source/core/editing/EditingUtilities.cpp
|
| index db235eed5f42dcaa57c41212dca318f9bfaa4fbf..498470b97abf49054f9d0d8f639f87bb554d07f7 100644
|
| --- a/Source/core/editing/EditingUtilities.cpp
|
| +++ b/Source/core/editing/EditingUtilities.cpp
|
| @@ -497,6 +497,11 @@ VisiblePosition lastEditableVisiblePositionBeforePositionInRoot(const Position&
|
| return createVisiblePosition(lastEditablePositionBeforePositionInRoot(position, highestRoot));
|
| }
|
|
|
| +VisiblePositionInComposedTree lastEditableVisiblePositionBeforePositionInRoot(const PositionInComposedTree& position, ContainerNode* highestRoot)
|
| +{
|
| + return createVisiblePosition(lastEditablePositionBeforePositionInRoot(position, highestRoot));
|
| +}
|
| +
|
| template <typename Strategy>
|
| PositionAlgorithm<Strategy> lastEditablePositionBeforePositionInRootAlgorithm(const PositionAlgorithm<Strategy>& position, Node* highestRoot)
|
| {
|
|
|