Getting a reference to HTML attributes inside NVDA #14716
Unanswered
ehteshamulhaque71
asked this question in
Q&A
Replies: 1 comment
-
NVDA only has access to the accessibility tree via IAccessible2 attributes, full HTML markup is not passed through to the accessibility APIs consumed by screen readers. https://developer.mozilla.org/en-US/docs/Glossary/Accessibility_tree |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Is it possible to get a reference to HTML attributes (default and custom) inside NVDA? Let's say I have a tag
<textarea id="myID" rows="5" data-current-line="2"></textarea>
. Is it possible to get a list of these attributes and their values inside NVDA for this object using an add-on so that I can perform some action using the attributes?I found that
api.getFocusObject().devInfo
givesIAccessible2 attributes
, which listsid
andclass
, but I could not find the remaining attributes likerows
and the custom attributedata-current-line
.Beta Was this translation helpful? Give feedback.
All reactions