| Index: third_party/WebKit/Source/core/editing/commands/IndentOutdentCommand.cpp
|
| diff --git a/third_party/WebKit/Source/core/editing/commands/IndentOutdentCommand.cpp b/third_party/WebKit/Source/core/editing/commands/IndentOutdentCommand.cpp
|
| index 207ede9981a024acec661a57f0a944762b9f96c4..45e1a0dc9d2f2d7e4be87b5fcb61bc3ade053124 100644
|
| --- a/third_party/WebKit/Source/core/editing/commands/IndentOutdentCommand.cpp
|
| +++ b/third_party/WebKit/Source/core/editing/commands/IndentOutdentCommand.cpp
|
| @@ -116,11 +116,14 @@ bool IndentOutdentCommand::tryIndentingAsListItem(const Position& start,
|
| if (editingState->isAborted())
|
| return false;
|
|
|
| + document().updateStyleAndLayoutIgnorePendingStylesheets();
|
| if (canMergeLists(previousList, newList)) {
|
| mergeIdenticalElements(previousList, newList, editingState);
|
| if (editingState->isAborted())
|
| return false;
|
| + document().updateStyleAndLayoutIgnorePendingStylesheets();
|
| }
|
| +
|
| if (canMergeLists(newList, nextList)) {
|
| mergeIdenticalElements(newList, nextList, editingState);
|
| if (editingState->isAborted())
|
|
|