| Index: Source/modules/accessibility/AXLayoutObject.cpp
|
| diff --git a/Source/modules/accessibility/AXLayoutObject.cpp b/Source/modules/accessibility/AXLayoutObject.cpp
|
| index 4d834f7dae0b45241ca2727ab997e75e48ea060a..a473c6a220e76073ed1a711d4a794f122cb8ba10 100644
|
| --- a/Source/modules/accessibility/AXLayoutObject.cpp
|
| +++ b/Source/modules/accessibility/AXLayoutObject.cpp
|
| @@ -602,7 +602,7 @@
|
|
|
| // Don't ignore static text in editable text controls.
|
| for (AXObject* parent = parentObject(); parent; parent = parent->parentObject()) {
|
| - if (parent->roleValue() == TextFieldRole)
|
| + if (parent->roleValue() == TextFieldRole || parent->roleValue() == TextAreaRole)
|
| return false;
|
| }
|
|
|
| @@ -904,6 +904,7 @@
|
| case ToggleButtonRole:
|
| return queryString(WebLocalizedString::AXButtonActionVerb);
|
| case TextFieldRole:
|
| + case TextAreaRole:
|
| return queryString(WebLocalizedString::AXTextFieldActionVerb);
|
| case RadioButtonRole:
|
| return queryString(WebLocalizedString::AXRadioButtonActionVerb);
|
|
|