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

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

Issue 862543003: Table headers are not retrieved properly by Accessibility API (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 11 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/AXTableCell.h ('k') | Source/modules/accessibility/AXTableColumn.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/accessibility/AXTableColumn.h
diff --git a/Source/modules/accessibility/AXTableColumn.h b/Source/modules/accessibility/AXTableColumn.h
index 5e8702aea5011c90a8240632553c1adce208f47b..5b69635d6ac1960f3d692fc5d9dfd81981b62bf1 100644
--- a/Source/modules/accessibility/AXTableColumn.h
+++ b/Source/modules/accessibility/AXTableColumn.h
@@ -46,7 +46,10 @@ public:
static PassRefPtr<AXTableColumn> create(AXObjectCacheImpl*);
virtual ~AXTableColumn();
+ // retrieves the topmost "column" header (th)
AXObject* headerObject();
+ // retrieves the "column" headers (th, scope) from top to bottom for the each column.
dmazzoni 2015/01/21 07:12:30 nit: "for the each column" is confusing and can be
+ void headerObjectsForColumn(AccessibilityChildrenVector&);
virtual AccessibilityRole roleValue() const override { return ColumnRole; }
« no previous file with comments | « Source/modules/accessibility/AXTableCell.h ('k') | Source/modules/accessibility/AXTableColumn.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698