| Index: third_party/WebKit/Source/core/svg/UnsafeSVGAttributeSanitizationTest.cpp
|
| diff --git a/third_party/WebKit/Source/core/svg/UnsafeSVGAttributeSanitizationTest.cpp b/third_party/WebKit/Source/core/svg/UnsafeSVGAttributeSanitizationTest.cpp
|
| index d2c68ce96358e2d9cf4f75020e578722e52848c3..a435425f899b7a2fefafb5a47f628148388b982f 100644
|
| --- a/third_party/WebKit/Source/core/svg/UnsafeSVGAttributeSanitizationTest.cpp
|
| +++ b/third_party/WebKit/Source/core/svg/UnsafeSVGAttributeSanitizationTest.cpp
|
| @@ -61,7 +61,9 @@ String contentAfterPastingHTML(DummyPageHolder* pageHolder,
|
| frame.selection().setSelection(
|
| SelectionInDOMTree::Builder().selectAllChildren(*body).build());
|
| EXPECT_EQ(CaretSelection, frame.selection().getSelectionType());
|
| - EXPECT_TRUE(frame.selection().isContentEditable())
|
| + EXPECT_TRUE(frame.selection()
|
| + .computeVisibleSelectionInDOMTreeDeprecated()
|
| + .isContentEditable())
|
| << "We should be pasting into something editable.";
|
|
|
| Pasteboard* pasteboard = Pasteboard::generalPasteboard();
|
|
|