| Index: third_party/WebKit/Source/core/html/HTMLElement.cpp
|
| diff --git a/third_party/WebKit/Source/core/html/HTMLElement.cpp b/third_party/WebKit/Source/core/html/HTMLElement.cpp
|
| index 109e8b45a3b0c2aa45eade29c6a8d508673ddd28..c0169f6f702897f29d1fb2bc83544457591593a9 100644
|
| --- a/third_party/WebKit/Source/core/html/HTMLElement.cpp
|
| +++ b/third_party/WebKit/Source/core/html/HTMLElement.cpp
|
| @@ -587,9 +587,9 @@ void HTMLElement::setContentEditable(const String& enabled, ExceptionState& exce
|
| exceptionState.throwDOMException(SyntaxError, "The value provided ('" + enabled + "') is not one of 'true', 'false', 'plaintext-only', or 'inherit'.");
|
| }
|
|
|
| -bool HTMLElement::isContentEditable() const
|
| +bool HTMLElement::isContentEditableForBinding() const
|
| {
|
| - return blink::isContentEditable(*this);
|
| + return isEditingHost(*this) || isEditable(*this);
|
| }
|
|
|
| bool HTMLElement::draggable() const
|
|
|