| Index: Source/web/WebAXObject.cpp
|
| diff --git a/Source/web/WebAXObject.cpp b/Source/web/WebAXObject.cpp
|
| index 1148fb3acc82e23d29aa3f6945c8e80fa1277369..3d1bcda047bb94e54e0f2ac7fe11a552326de915 100644
|
| --- a/Source/web/WebAXObject.cpp
|
| +++ b/Source/web/WebAXObject.cpp
|
| @@ -501,6 +501,22 @@ bool WebAXObject::isMultiline() const
|
| return m_private->isMultiline();
|
| }
|
|
|
| +int WebAXObject::posInSet() const
|
| +{
|
| + if (isDetached())
|
| + return 0;
|
| +
|
| + return m_private->posInSet();
|
| +}
|
| +
|
| +int WebAXObject::setSize() const
|
| +{
|
| + if (isDetached())
|
| + return 0;
|
| +
|
| + return m_private->setSize();
|
| +}
|
| +
|
| bool WebAXObject::isInLiveRegion() const
|
| {
|
| if (isDetached())
|
|
|