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

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

Issue 869253002: Aria table row and column headers are not exposed in accessibility (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
Index: Source/modules/accessibility/AXARIAGridCell.h
diff --git a/Source/modules/accessibility/AXARIAGridCell.h b/Source/modules/accessibility/AXARIAGridCell.h
index ea34164f323a3212cd62866652ea667f26711747..03f2402d55a5e11dc9714ac6bfee2ff687badc3a 100644
--- a/Source/modules/accessibility/AXARIAGridCell.h
+++ b/Source/modules/accessibility/AXARIAGridCell.h
@@ -48,8 +48,11 @@ public:
virtual void rowIndexRange(pair<unsigned, unsigned>& rowRange) override;
// fills in the start location and column span of cell
virtual void columnIndexRange(pair<unsigned, unsigned>& columnRange) override;
+ virtual AccessibilityRole scanToDecideHeaderRole() override;
protected:
+ bool isAriaColumnHeader() const;
+ bool isAriaRowHeader() const;
virtual AXObject* parentTable() const override;
};

Powered by Google App Engine
This is Rietveld 408576698