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

Unified Diff: third_party/WebKit/Source/modules/accessibility/AXARIAGrid.h

Issue 2825803002: Expose internal treegrid role, do some cleanup for table/grid/treegrid handling (Closed)
Patch Set: Fix mac tests Created 3 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: third_party/WebKit/Source/modules/accessibility/AXARIAGrid.h
diff --git a/third_party/WebKit/Source/modules/accessibility/AXARIAGrid.h b/third_party/WebKit/Source/modules/accessibility/AXARIAGrid.h
index ccd3b7f93b694abed6edd507617e1fe2c73517d4..f21c07cc162ac5569f9529407d7a082d64d2de16 100644
--- a/third_party/WebKit/Source/modules/accessibility/AXARIAGrid.h
+++ b/third_party/WebKit/Source/modules/accessibility/AXARIAGrid.h
@@ -48,6 +48,10 @@ class AXARIAGrid final : public AXTable {
bool IsAriaTable() const override { return true; }
+ AccessibilityRole RoleValue() const final {
+ return AXLayoutObject::RoleValue();
+ } // Use ARIA role
+
void AddChildren() override;
private:

Powered by Google App Engine
This is Rietveld 408576698