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

Unified Diff: Source/modules/accessibility/AXObject.h

Issue 1071483002: Implement aria properties setsize and posinset. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Comments incorporated 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
Index: Source/modules/accessibility/AXObject.h
diff --git a/Source/modules/accessibility/AXObject.h b/Source/modules/accessibility/AXObject.h
index 9f5ad675b2c273a5bf1178d2f5ae3dff41bf7667..63fda08f191f07b3f77f9741157636944ae7324a 100644
--- a/Source/modules/accessibility/AXObject.h
+++ b/Source/modules/accessibility/AXObject.h
@@ -557,6 +557,10 @@ public:
virtual bool supportsARIAOwns() const { return false; }
bool supportsRangeValue() const;
virtual SortDirection sortDirection() const { return SortDirectionUndefined; }
+ int indexInParent() const;
dmazzoni 2015/04/16 17:19:48 Add a comment saying this is 0-based.
+ virtual int posInSet() const { return 0; }
dmazzoni 2015/04/16 17:19:48 Add a comment saying that this is the 1-based posi
+ virtual int setSize() const { return 0; }
+ bool supportsSetSizeAndPosInSet() const;
// ARIA trees.
// Used by an ARIA tree to get all its rows.

Powered by Google App Engine
This is Rietveld 408576698