| Index: third_party/WebKit/Source/core/editing/commands/DeleteSelectionCommandTest.cpp
|
| diff --git a/third_party/WebKit/Source/core/editing/commands/DeleteSelectionCommandTest.cpp b/third_party/WebKit/Source/core/editing/commands/DeleteSelectionCommandTest.cpp
|
| index 6dfd318df47b25fa66a5a19c28317e7a7a60a09f..c92ef988468847348ac473491119992469a14364 100644
|
| --- a/third_party/WebKit/Source/core/editing/commands/DeleteSelectionCommandTest.cpp
|
| +++ b/third_party/WebKit/Source/core/editing/commands/DeleteSelectionCommandTest.cpp
|
| @@ -57,7 +57,10 @@ TEST_F(DeleteSelectionCommandTest, deleteListFromTable) {
|
| EXPECT_TRUE(frame->selection()
|
| .computeVisibleSelectionInDOMTreeDeprecated()
|
| .isCaret());
|
| - EXPECT_EQ(Position(div, 0), frame->selection().base().toOffsetInAnchor());
|
| + EXPECT_EQ(Position(div, 0), frame->selection()
|
| + .computeVisibleSelectionInDOMTree()
|
| + .base()
|
| + .toOffsetInAnchor());
|
| }
|
|
|
| } // namespace blink
|
|
|