| Index: third_party/WebKit/Source/core/editing/Editor.cpp
|
| diff --git a/third_party/WebKit/Source/core/editing/Editor.cpp b/third_party/WebKit/Source/core/editing/Editor.cpp
|
| index 0d575276b4020936bb3c81263433baf65d5d9613..ac351aca0cb37c86321900bf054c88568fafe9b5 100644
|
| --- a/third_party/WebKit/Source/core/editing/Editor.cpp
|
| +++ b/third_party/WebKit/Source/core/editing/Editor.cpp
|
| @@ -1304,6 +1304,8 @@ void Editor::revealSelectionAfterEditingOperation(
|
| RevealExtentOption revealExtentOption) {
|
| if (m_preventRevealSelection)
|
| return;
|
| + if (!frame().selection().isAvailable())
|
| + return;
|
| frame().selection().revealSelection(alignment, revealExtentOption);
|
| }
|
|
|
|
|