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

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

Issue 1547643002: ARIA 1.1: implementation for aria-col-* and aria-row-*. Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Adds MODULES_EXPORT Created 5 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 f0051c1678a9b4c77d1a3e1cba807c77dfe6a794..28eaef7657b2f36868dfde245f570d055448136d 100644
--- a/third_party/WebKit/public/web/WebAXObject.h
+++ b/third_party/WebKit/public/web/WebAXObject.h
@@ -237,6 +237,10 @@ public:
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, unsigned row) const;

Powered by Google App Engine
This is Rietveld 408576698