| Index: third_party/WebKit/Source/core/editing/commands/FormatBlockCommand.cpp
|
| diff --git a/third_party/WebKit/Source/core/editing/commands/FormatBlockCommand.cpp b/third_party/WebKit/Source/core/editing/commands/FormatBlockCommand.cpp
|
| index 44442099edb41aee29f75bb55e3d68f0f039a3c0..e6e28eddb68aad9de70f6ce242bb0e116dded5c1 100644
|
| --- a/third_party/WebKit/Source/core/editing/commands/FormatBlockCommand.cpp
|
| +++ b/third_party/WebKit/Source/core/editing/commands/FormatBlockCommand.cpp
|
| @@ -131,6 +131,11 @@ Element* FormatBlockCommand::elementForFormatBlockCommand(Range* range)
|
| return commonAncestor->isElementNode() ? toElement(commonAncestor) : 0;
|
| }
|
|
|
| +InputEvent::InputType FormatBlockCommand::inputType() const
|
| +{
|
| + return InputEvent::InputType::FormatBlock;
|
| +}
|
| +
|
| bool isElementForFormatBlock(const QualifiedName& tagName)
|
| {
|
| DEFINE_STATIC_LOCAL(HashSet<QualifiedName>, blockTags, ({
|
|
|