In Firefox browser, NVDA announces same message three times even though there is no change in contents in the live region
Categories
(Core :: Disability Access APIs, defect, P3)
Tracking
()
People
(Reporter: edad, Unassigned)
Details
Attachments
(1 file)
|
3.40 MB,
video/mp4
|
Details |
User Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.182 Safari/537.36 Edg/88.0.705.81
Steps to reproduce:
1.Start NVDA Screen Reader.
2.Open link ‘https://jsfiddle.net/49Lqenfb/’ in Firefox browser.
3.Tab till ‘Click me to show live message’ button in opened page and press enter.
4.Verify whether NVDA is announcing the displayed live message once or more.
Actual results:
In Firefox browser, NVDA announces same message three times even though there is no change in contents in the live region
Expected results:
NVDA should read the live message only once. If there are large information provided in live region, screen reader users will be inconvenienced.
Comment 1•5 years ago
|
||
The Bugbug bot thinks this bug should belong to the 'Core::Disability Access APIs' component, and is moving the bug to that component. Please revert this change in case you think the bot is wrong.
Comment 2•5 years ago
|
||
Jamie is this an NVDA or Firefox bug?
Comment 3•5 years ago
|
||
The test case sets .textContent three times, each 100 ms apart. Yes, the content is the same, but it still gets reset, which means new text nodes are created each time. If you don't want a screen reader to report this multiple times, you shouldn't set it multiple times. If you must set it multiple times for some reason, set aria-atomic="true" and aria-busy="true", then remove aria-busy for the final update.
Description
•