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

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

Issue 2817713002: Ignore unknown focusable nodes if they have children (Closed)
Patch Set: Simpler fix (unknown nodes are structural containers). Created 3 years, 8 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 2208f0bb661352b97e338298f7e1156b41cec98d..717e78e7845308509d90b65b5791e526ed18be2c 100644
--- a/chrome/browser/resources/chromeos/chromevox/cvox2/background/automation_predicate.js
+++ b/chrome/browser/resources/chromeos/chromevox/cvox2/background/automation_predicate.js
@@ -313,7 +313,8 @@ AutomationPredicate.structuralContainer = AutomationPredicate.roles([
Role.WINDOW,
Role.EMBEDDED_OBJECT,
Role.IFRAME,
- Role.IFRAME_PRESENTATIONAL]);
+ Role.IFRAME_PRESENTATIONAL,
+ Role.UNKNOWN]);
/**
* Returns whether the given node should not be crossed when performing
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698