Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(340)

Unified Diff: Source/web/WebAXObject.cpp

Issue 1071483002: Implement aria properties setsize and posinset. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Fixing nits Created 5 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/modules/accessibility/AXObject.cpp ('k') | public/web/WebAXObject.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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())
« no previous file with comments | « Source/modules/accessibility/AXObject.cpp ('k') | public/web/WebAXObject.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698