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

Unified Diff: chrome/browser/resources/chromeos/chromevox/cvox2/background/automation_util.js

Issue 674263003: Add remaining text/caret navigation commands to ChromeVox Next. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@integrate_cursor
Patch Set: Add comments. Created 6 years, 2 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/cvox2/background/automation_util.js
diff --git a/chrome/browser/resources/chromeos/chromevox/cvox2/background/automation_util.js b/chrome/browser/resources/chromeos/chromevox/cvox2/background/automation_util.js
index 617f3982407770d884ef79f8b073aa39228c9314..4486e195a7f01eb6e743d5072a4a108a092ea73f 100644
--- a/chrome/browser/resources/chromeos/chromevox/cvox2/background/automation_util.js
+++ b/chrome/browser/resources/chromeos/chromevox/cvox2/background/automation_util.js
@@ -122,10 +122,9 @@ AutomationUtil.findNextNode = function(cur, dir, pred) {
* @param {AutomationPredicate.Binary} pred
* @param {{filter: (AutomationPredicate.Unary|undefined),
* before: boolean?}=} opt_options
- * filter - Filters which candidate nodes to
- * consider. Defaults to leaf nodes only.
- * before - True to return a_(i -
- * 1); a_i otherwise. Defaults to false.
+ * filter - Filters which candidate nodes to consider. Defaults to leaf
+ * only.
+ * before - True to return a_(i - 1); a_i otherwise. Defaults to false.
* @return {AutomationNode}
*/
AutomationUtil.findNodeUntil = function(cur, dir, pred, opt_options) {

Powered by Google App Engine
This is Rietveld 408576698