| Index: third_party/WebKit/Source/web/WebInputMethodControllerImpl.cpp
|
| diff --git a/third_party/WebKit/Source/web/WebInputMethodControllerImpl.cpp b/third_party/WebKit/Source/web/WebInputMethodControllerImpl.cpp
|
| index d30ecee9ffaee20bcde4c311721ae05cbd621e4e..c876be88000948aa001fb1bebcf4a5e7a385e634 100644
|
| --- a/third_party/WebKit/Source/web/WebInputMethodControllerImpl.cpp
|
| +++ b/third_party/WebKit/Source/web/WebInputMethodControllerImpl.cpp
|
| @@ -104,6 +104,11 @@ bool WebInputMethodControllerImpl::finishComposingText(
|
|
|
| if (WebPlugin* plugin = focusedPluginIfInputMethodSupported())
|
| return plugin->finishComposingText(selectionBehavior);
|
| +
|
| + // TODO(editing-dev): The use of updateStyleAndLayoutIgnorePendingStylesheets
|
| + // needs to be audited. See http://crbug.com/590369 for more details.
|
| + frame()->document()->updateStyleAndLayoutIgnorePendingStylesheets();
|
| +
|
| return inputMethodController().finishComposingText(
|
| selectionBehavior == WebInputMethodController::KeepSelection
|
| ? InputMethodController::KeepSelection
|
|
|