We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Inconsistent Live Region output depending on the fade-in method
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>live region</title> </head> <body> <div role=alert id=1> content of live region </div> <h2>visibility:hidden</h2> <button onClick="document.getElementById('1').setAttribute('style','visibility:hidden');">hide</button> <button onClick="document.getElementById('1').removeAttribute('style');">show</button> <h2>display:none</h2> <button onClick="document.getElementById('1').setAttribute('style','display:none');">hide</button> <button onClick="document.getElementById('1').removeAttribute('style');">show</button> <h2>aria-hidden</h2> <button onClick="document.getElementById('1').setAttribute('aria-hidden','true');">hide</button> <button onClick="document.getElementById('1').removeAttribute('aria-hidden');">show</button> <h2>hidden</h2> <button onClick="document.getElementById('1').setAttribute('hidden','');">hide</button> <button onClick="document.getElementById('1').removeAttribute('hidden');">show</button> </body> </html>
Different output depending on browser and method
See also w3c/aria-practices#78 and many other problems with live regions: https://github.com/FreedomScientific/VFO-standards-support/issues?q=live+region
The live region is output as follows:
JAWS 2019.1907.42
Windows 10
Chrome 76.0.3809.132 Firefox ESR 60.8.0 IE 11.1268.16299.0 Edge 16.16299
The text was updated successfully, but these errors were encountered:
jhartleytpgi
No branches or pull requests
Summary
Inconsistent Live Region output depending on the fade-in method
Expected result
Actual result
Different output depending on browser and method
See also w3c/aria-practices#78 and many other problems with live regions: https://github.com/FreedomScientific/VFO-standards-support/issues?q=live+region
The live region is output as follows:
at the element
aria-live=polite
role=alert
at a child element
aria-live=polite
role=alert
Additional Information
JAWS version and build number
JAWS 2019.1907.42
Operating System and version
Windows 10
Browser and version:
Chrome 76.0.3809.132
Firefox ESR 60.8.0
IE 11.1268.16299.0
Edge 16.16299
The text was updated successfully, but these errors were encountered: