| Index: third_party/WebKit/Source/modules/accessibility/AXObject.cpp
|
| diff --git a/third_party/WebKit/Source/modules/accessibility/AXObject.cpp b/third_party/WebKit/Source/modules/accessibility/AXObject.cpp
|
| index f7145d1222ce32544ce1452749a5150af2eccd15..da830e9d74672f48c7ce94d97c29fc881bbefc44 100644
|
| --- a/third_party/WebKit/Source/modules/accessibility/AXObject.cpp
|
| +++ b/third_party/WebKit/Source/modules/accessibility/AXObject.cpp
|
| @@ -1162,24 +1162,6 @@ AXDefaultActionVerb AXObject::Action() const {
|
| return AXDefaultActionVerb::kClick;
|
| }
|
| }
|
| -
|
| -bool AXObject::IsMultiline() const {
|
| - Node* node = this->GetNode();
|
| - if (!node)
|
| - return false;
|
| -
|
| - if (isHTMLTextAreaElement(*node))
|
| - return true;
|
| -
|
| - if (HasEditableStyle(*node))
|
| - return true;
|
| -
|
| - if (!IsNativeTextControl() && !IsNonNativeTextControl())
|
| - return false;
|
| -
|
| - return AOMPropertyOrARIAAttributeIsTrue(AOMBooleanProperty::kMultiline);
|
| -}
|
| -
|
| bool AXObject::AriaPressedIsPresent() const {
|
| return !GetAttribute(aria_pressedAttr).IsEmpty();
|
| }
|
|
|