[orca/gnome-3-22] Add explicit do-not-descend-for-caret check for ROLE_IMAGE
- From: Joanmarie Diggs <joanied src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [orca/gnome-3-22] Add explicit do-not-descend-for-caret check for ROLE_IMAGE
- Date: Mon, 12 Sep 2016 18:47:39 +0000 (UTC)
commit a0324622e9f18d49cf3f39c871c06f5880849118
Author: Joanmarie Diggs <jdiggs igalia com>
Date: Mon Sep 12 14:42:06 2016 -0400
Add explicit do-not-descend-for-caret check for ROLE_IMAGE
Images should not implement the accessible text interface so why bother
checking? Answer: If ARIA role="img" is used, it changes the role, but
not the interfaces implemented. Thus it is possible to have an image whose
child is a document. If the author tells us something is an image, we need
to trust the author.
src/orca/scripts/web/script_utilities.py | 1 +
1 files changed, 1 insertions(+), 0 deletions(-)
---
diff --git a/src/orca/scripts/web/script_utilities.py b/src/orca/scripts/web/script_utilities.py
index c450e8f..329a5c2 100644
--- a/src/orca/scripts/web/script_utilities.py
+++ b/src/orca/scripts/web/script_utilities.py
@@ -2847,6 +2847,7 @@ class Utilities(script_utilities.Utilities):
return False
doNotDescend = [pyatspi.ROLE_COMBO_BOX,
+ pyatspi.ROLE_IMAGE,
pyatspi.ROLE_LIST_BOX,
pyatspi.ROLE_MENU_BAR,
pyatspi.ROLE_MENU,
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]