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

Unified Diff: chrome/browser/resources/chromeos/chromevox/common/chrome_extension_externs.js

Issue 2132123002: Complete table support in ChromeVox Next. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Ignore some roles. Created 4 years, 5 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: chrome/browser/resources/chromeos/chromevox/common/chrome_extension_externs.js
diff --git a/chrome/browser/resources/chromeos/chromevox/common/chrome_extension_externs.js b/chrome/browser/resources/chromeos/chromevox/common/chrome_extension_externs.js
index 5d8213dbbff48dbd786384a003e9f7bca9f4bea4..58aace8e920b9f216af5de7dc42f662047b24620 100644
--- a/chrome/browser/resources/chromeos/chromevox/common/chrome_extension_externs.js
+++ b/chrome/browser/resources/chromeos/chromevox/common/chrome_extension_externs.js
@@ -618,5 +618,17 @@ chrome.automation.focusOffset;
*/
chrome.automation.AutomationNode.prototype.activeDescendant;
+/** @type {number} */
+chrome.automation.AutomationNode.prototype.tableCellColumnIndex;
+
+/** @type {number} */
+chrome.automation.AutomationNode.prototype.tableCellRowIndex;
+
+/** @type {number} */
+chrome.automation.AutomationNode.prototype.tableColumnCount;
+
+/** @type {number} */
+chrome.automation.AutomationNode.prototype.tableRowCount;
+
/** @type {function() : !Object} */
chrome.app.getDetails;

Powered by Google App Engine
This is Rietveld 408576698