| 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 b0f4e59ae51c72dec0b34d15e0a9132fa8093728..237f3da3e7e3b1d10be75829969ef8e92f1d66ad 100644
|
| --- a/chrome/browser/resources/chromeos/chromevox/cvox2/background/automation_util.js
|
| +++ b/chrome/browser/resources/chromeos/chromevox/cvox2/background/automation_util.js
|
| @@ -113,6 +113,8 @@ AutomationUtil.findNextNode = function(cur, dir, pred) {
|
| return null;
|
| cur = next;
|
| next = AutomationUtil.findNodePre(next, dir, pred);
|
| + if (AutomationPredicate.shouldIgnoreLeaf(next))
|
| + next = null;
|
| } while (!next);
|
| return next;
|
| };
|
|
|