| Index: chrome/browser/resources/chromeos/chromevox/cvox2/background/automation_predicate.js
|
| diff --git a/chrome/browser/resources/chromeos/chromevox/cvox2/background/automation_predicate.js b/chrome/browser/resources/chromeos/chromevox/cvox2/background/automation_predicate.js
|
| index d32ccd15946e35c8605b8b132b4e03b77004c12c..98391fcedd489c2a75cd0ac8b3aac829e4767a50 100644
|
| --- a/chrome/browser/resources/chromeos/chromevox/cvox2/background/automation_predicate.js
|
| +++ b/chrome/browser/resources/chromeos/chromevox/cvox2/background/automation_predicate.js
|
| @@ -272,6 +272,10 @@ AutomationPredicate.shouldIgnoreNode = function(node) {
|
| if (AutomationPredicate.structuralContainer(node))
|
| return true;
|
|
|
| + // Ignore list markers since we already announce listitem role.
|
| + if (node.role == RoleType.listMarker)
|
| + return true;
|
| +
|
| // Don't ignore nodes with names.
|
| if (node.name || node.value || node.description)
|
| return false;
|
|
|