| Index: Source/web/WebAXObject.cpp
|
| diff --git a/Source/web/WebAXObject.cpp b/Source/web/WebAXObject.cpp
|
| index 278ff06b6df00c0f7c6682e6dc70e5f9117aa008..8719bfa6788e9afaf87c935d8bb822acf65f7ef4 100644
|
| --- a/Source/web/WebAXObject.cpp
|
| +++ b/Source/web/WebAXObject.cpp
|
| @@ -213,6 +213,14 @@ bool WebAXObject::isAnchor() const
|
| return m_private->isAnchor();
|
| }
|
|
|
| +WebAXOptionalBool WebAXObject::isAriaGrabbed() const
|
| +{
|
| + if (isDetached())
|
| + return WebAXOptionalBoolUndefined;
|
| +
|
| + return static_cast<WebAXOptionalBool>(m_private->isAriaGrabbed());
|
| +}
|
| +
|
| bool WebAXObject::isAriaReadOnly() const
|
| {
|
| if (isDetached())
|
|
|