| Index: Source/web/WebAXObject.cpp
|
| diff --git a/Source/web/WebAXObject.cpp b/Source/web/WebAXObject.cpp
|
| index ba8d03afa1bafb7f1079452d9a58f5108194cf23..535b79b3d33509de4dd8bed484b1575c1c5a5c60 100644
|
| --- a/Source/web/WebAXObject.cpp
|
| +++ b/Source/web/WebAXObject.cpp
|
| @@ -536,6 +536,22 @@ bool WebAXObject::isMultiline() const
|
| return m_private->isMultiline();
|
| }
|
|
|
| +int WebAXObject::ariaPosInSet() const
|
| +{
|
| + if (isDetached())
|
| + return 0;
|
| +
|
| + return m_private->ariaPosInSet();
|
| +}
|
| +
|
| +int WebAXObject::ariaSetSize() const
|
| +{
|
| + if (isDetached())
|
| + return 0;
|
| +
|
| + return m_private->ariaSetSize();
|
| +}
|
| +
|
| bool WebAXObject::isInLiveRegion() const
|
| {
|
| if (isDetached())
|
|
|