| Index: third_party/WebKit/Source/core/editing/commands/CompositeEditCommand.cpp
|
| diff --git a/third_party/WebKit/Source/core/editing/commands/CompositeEditCommand.cpp b/third_party/WebKit/Source/core/editing/commands/CompositeEditCommand.cpp
|
| index 2c0b4f3f93ecdf7bbadb9012b93bf57798206b49..5f010908b57f5c5420d2b3fcd5455754086fa7b1 100644
|
| --- a/third_party/WebKit/Source/core/editing/commands/CompositeEditCommand.cpp
|
| +++ b/third_party/WebKit/Source/core/editing/commands/CompositeEditCommand.cpp
|
| @@ -206,7 +206,6 @@ bool CompositeEditCommand::apply() {
|
| case InputEvent::InputType::DeleteContentForward:
|
| case InputEvent::InputType::DeleteByCut:
|
| case InputEvent::InputType::DeleteByDrag:
|
| - case InputEvent::InputType::SetWritingDirection:
|
| case InputEvent::InputType::None:
|
| break;
|
| default:
|
| @@ -315,8 +314,7 @@ void CompositeEditCommand::appendCommandToComposite(
|
| void CompositeEditCommand::applyStyle(const EditingStyle* style,
|
| EditingState* editingState) {
|
| applyCommandToComposite(
|
| - ApplyStyleCommand::create(document(), style,
|
| - InputEvent::InputType::ChangeAttributes),
|
| + ApplyStyleCommand::create(document(), style, InputEvent::InputType::None),
|
| editingState);
|
| }
|
|
|
|
|