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

Unified Diff: third_party/WebKit/public/web/WebAXObject.h

Issue 2539503003: ARIA 1.1: implementation for aria-col-* and aria-row-*. (Closed)
Patch Set: Address feedback Created 4 years 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/public/web/WebAXObject.h
diff --git a/third_party/WebKit/public/web/WebAXObject.h b/third_party/WebKit/public/web/WebAXObject.h
index 3e4d70255d71c5a121a19c90432cee029e0afd94..adecd0a7c213e9ab544baa46895c5b656cc3be8c 100644
--- a/third_party/WebKit/public/web/WebAXObject.h
+++ b/third_party/WebKit/public/web/WebAXObject.h
@@ -270,6 +270,10 @@ class WebAXObject {
BLINK_EXPORT void showContextMenu() const;
// For a table
+ BLINK_EXPORT int ariaColumnCount() const;
+ BLINK_EXPORT unsigned ariaColumnIndex() const;
+ BLINK_EXPORT int ariaRowCount() const;
+ BLINK_EXPORT unsigned ariaRowIndex() const;
BLINK_EXPORT unsigned columnCount() const;
BLINK_EXPORT unsigned rowCount() const;
BLINK_EXPORT WebAXObject cellForColumnAndRow(unsigned column,

Powered by Google App Engine
This is Rietveld 408576698