| Index: Source/modules/accessibility/AXObject.cpp
|
| diff --git a/Source/modules/accessibility/AXObject.cpp b/Source/modules/accessibility/AXObject.cpp
|
| index f5cd5277653bcf7d39b8ee6be823cef3b425d883..0e3b3f1f77e26ca4357fb1b721fce84506311ce8 100644
|
| --- a/Source/modules/accessibility/AXObject.cpp
|
| +++ b/Source/modules/accessibility/AXObject.cpp
|
| @@ -350,6 +350,14 @@ bool AXObject::isClickable() const
|
| }
|
| }
|
|
|
| +bool AXObject::isReadOnly() const
|
| +{
|
| + if (node())
|
| + return !node()->hasEditableStyle();
|
| +
|
| + return true;
|
| +}
|
| +
|
| bool AXObject::accessibilityIsIgnored() const
|
| {
|
| updateCachedAttributeValuesIfNeeded();
|
|
|