| Index: third_party/WebKit/Source/core/editing/commands/SplitTextNodeCommandTest.cpp
|
| diff --git a/third_party/WebKit/Source/core/editing/commands/SplitTextNodeCommandTest.cpp b/third_party/WebKit/Source/core/editing/commands/SplitTextNodeCommandTest.cpp
|
| index 7b79e69e44ee84d0e9d17d8e1e92f151b9a837dd..0c810cc46d5ebf0246fd3fb7c61aecd185de97bb 100644
|
| --- a/third_party/WebKit/Source/core/editing/commands/SplitTextNodeCommandTest.cpp
|
| +++ b/third_party/WebKit/Source/core/editing/commands/SplitTextNodeCommandTest.cpp
|
| @@ -20,15 +20,15 @@ TEST_F(SplitTextNodeCommandTest, splitInMarkerInterior) {
|
|
|
| EphemeralRange range = PlainTextRange(0, 5).CreateRange(*div);
|
| GetDocument().Markers().AddTextMatchMarker(
|
| - range, DocumentMarker::MatchStatus::kInactive);
|
| + range, TextMatchMarker::MatchStatus::kInactive);
|
|
|
| range = PlainTextRange(6, 11).CreateRange(*div);
|
| GetDocument().Markers().AddTextMatchMarker(
|
| - range, DocumentMarker::MatchStatus::kInactive);
|
| + range, TextMatchMarker::MatchStatus::kInactive);
|
|
|
| range = PlainTextRange(12, 17).CreateRange(*div);
|
| GetDocument().Markers().AddTextMatchMarker(
|
| - range, DocumentMarker::MatchStatus::kInactive);
|
| + range, TextMatchMarker::MatchStatus::kInactive);
|
|
|
| SimpleEditCommand* command = SplitTextNodeCommand::Create(
|
| ToText(GetDocument().body()->firstChild()->firstChild()), 8);
|
|
|