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
Live region: aria-relevant removals does not work
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>live region</title> </head> <body> <div id=1><div aria-live=polite aria-relevant=removals id=2>same element</div></div> <div id=3><div id=4><div aria-live=polite aria-relevant=removals>outside</div></div></div> <div aria-live=polite aria-relevant=removals id=5><div id=6>inside</div></div> <h2>remove node</h2> <button onClick="document.getElementById('1').removeChild(document.getElementById('2'));">same element</button> <button onClick="document.getElementById('3').removeChild(document.getElementById('4'));">outside</button> <button onClick="document.getElementById('5').removeChild(document.getElementById('6'));">inside</button> <h2>hide node with hidden</h2> <button onClick="document.getElementById('2').setAttribute('hidden','');">same element</button> <button onClick="document.getElementById('4').setAttribute('hidden','');">outside</button> <button onClick="document.getElementById('6').setAttribute('hidden','');">inside</button> <h2>hide node with aria-hidden=true</h2> <button onClick="document.getElementById('2').setAttribute('aria-hidden','true');">same element</button> <button onClick="document.getElementById('4').setAttribute('aria-hidden','true');">outside</button> <button onClick="document.getElementById('6').setAttribute('aria-hidden','true');">inside</button> <h2>replace node</h2> <button onClick="document.getElementById('1').innerHTML='new1';">same element</button> <button onClick="document.getElementById('3').innerHTML='new2';">outside</button> <button onClick="document.getElementById('5').innerHTML='new3';">inside</button> </body> </html>
See also w3c/aria-practices#78, #279, w3c/aria#1048
The following overview shows which output is made with which method of removal:
JAWS 2019.1907.42
Windows 8
Chrome 76.0.3809.100 Firefox 68.0.2 Internet Explorer 11.0.9600.19431
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Summary
Live region: aria-relevant removals does not work
Expected result
Actual result
See also w3c/aria-practices#78, #279, w3c/aria#1048
The following overview shows which output is made with which method of removal:
remove node
hide node (tested with hidden, display:none and aria-hidden=true)
replace node
Additional Information
JAWS version and build number
JAWS 2019.1907.42
Operating System and version
Windows 8
Browser and version:
Chrome 76.0.3809.100
Firefox 68.0.2
Internet Explorer 11.0.9600.19431
The text was updated successfully, but these errors were encountered: