| 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..4275a1ccae1736d1405b8492c877ab71dbfd6d81 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 (next && AutomationPredicate.shouldIgnoreLeaf(next))
|
| + next = null;
|
| } while (!next);
|
| return next;
|
| };
|
|
|