[Accessibility] Narrator is not reading the selection action title for the Rich Text Block
See original GitHub issuePlatforms
- JavaScript (#4857)
- .NET (#5295)
- UWP (Already behaves as expected)
See also #5310(iOS) and #5311(Android)
Author or host
Host, D365, Customer Service Workspace app
Version of SDK
1.3
Repro
With the below RichTextBlock, Narrator should read “Click me” when the focus is on the RichTextBlock, but it reads “This is the text”
{
"type": "AdaptiveCard",
"$schema": "http://adaptivecards.io/schemas/adaptive-card.json",
"version": "1.3",
"body": [
{
"type": "RichTextBlock",
"inlines": [
{
"type": "TextRun",
"text": "This is the text",
"selectAction": {
"type": "Action.Submit",
"title": "Click me"
}
}
]
}
]
}
Issue Analytics
- State:
- Created 3 years ago
- Comments:10 (9 by maintainers)
Top Results From Across the Web
Complete guide to Narrator
Learn how to use Narrator, a screen-reading app built into Windows, with this complete guide and how-to articles.
Read more >Handling common accessibility problems - MDN Web Docs
Hopefully this article has given you a good grounding in the main accessibility problems you might encounter, and how to test and overcome ......
Read more >Web Content Accessibility Guidelines (WCAG) 2.1
Web Content Accessibility Guidelines (WCAG) 2.1 covers a wide range of recommendations for making Web content more accessible.
Read more >Accessibility in Angular
Building accessible web experience often involves setting Accessible Rich Internet Applications (ARIA) attributes to provide semantic meaning where it might ...
Read more >Survey Accessibility
Not every question is accessible to screen-reading programs. Below are lists detailing which question types are accessible and which are not.
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
@shalinijoshi19 the change I am making is in the title of the PR: “Use TextRun.selectAction.title as aria-label”
Spun of iOS and Android to separate bugs to investigate and fix if necessary.