8,273 questions
0
votes
0
answers
30
views
Accessibility: focus trap not retained within SLDS modal on mobile [closed]
We are using an SLDS modal, and during testing with NVDA on a web browser, the focus trap within the modal works as expected. However, when the application is accessed on mobile devices (Chrome on ...
-1
votes
0
answers
99
views
Youtube embedded videos accessibility fail on Axe-core
I use axeCore plugin to check the accesibility of a website. It seems YouTube embedded videos have started showing a couple of errors resulting in a much lower "accessibility score". These ...
Best practices
0
votes
0
replies
31
views
How can I ensure that a PDF is properly tagged (for WAI accessibility)?
<a href="CV.pdf" target="_blank" rel="noopener" data-translation="CV" aria-label="Voir le CV en pdf">
Voir mon CV
</a>
The WAWE extension ...
Best practices
0
votes
2
replies
61
views
How can I make links with generic names like "Overview" in navigation structures most accessible?
Let’s say I have a fragment of navigation in my documentation:
Control system: Overview | Envelope protection | API | Error states
Unattended operation: Overview | Monitoring | Execution limits | ...
Advice
0
votes
2
replies
60
views
Inquiring about whether the software Jest has an up to date VPAT
I'm currently auditing tools we use on a University campus and wanted to check if the software Jest has an up to date VPAT available for this year?
We use VPATs to verify WCAG 2.1 AA compliance and ...
Tooling
0
votes
2
replies
85
views
How to use attachAccessibilityOverlayToWindow() from android accessibility service
Currently, i am using windowManager.addView() to add accessibility overlay to display. How do i use attachAccessibilityOverlayToWindow(int accessibilityWindowId, android.view.SurfaceControl sc) to add ...
0
votes
1
answer
31
views
Cannot use LABEL with easyAutocomplete
We are updating our website accessibility, but want to wait until after this update to update away from jQuery easyAutocomplete. How do I label widgets that use easyAutocomplete, as easyAutocomplete ...
Advice
2
votes
2
replies
105
views
Which Python GUI frameworks expose native Windows UI Automation properties correctly?
I am developing a Windows desktop GUI application in Python and need proper compatibility with screen readers such as NVDA and JAWS.
My main requirement is correct exposure of Microsoft UI Automation (...
0
votes
0
answers
20
views
ASP.NET MVC : how to set up route template with controller name in default action?
I am blind and use a screen reader with Visual Studio. The ASP.NET MVC convention dictates the existence of multiple view files named index. When I switch to an Index file in the editor, the screen ...
Best practices
0
votes
1
replies
38
views
standalone checkbox with structured copy on form
(Caveat: This is within Drupal. so it's not entirely under my control. Still, it's just HTML, not a Drupal issue.)
I have a webform with an acknowledgment checkbox. But the acknowledgment has some ...
0
votes
0
answers
42
views
ul ref not getting updated when a list element is removed and as such the focus goes back to the body
I have an unordered list wherein each list item is a card which contains a button. The button opens a popover with 2 options - edit/delete.
When I tab through to the button and click on delete, a new ...
Best practices
2
votes
5
replies
79
views
How do I write an accessible description for a chart with data fed by a database?
I am trying to make a website that uses lots of charts and graphs accessible. I read that each chart or graph needs to have a description that describes the data it shows. My problem is this... how? ...
0
votes
0
answers
49
views
aria-describedby read twice by reading navigation
aria-describedby read twice by reading navigation.
<button class="button1 " type="button" id="refresh" aria-label="Refresh QR" aria-describedby="...
0
votes
0
answers
79
views
Kotlin Jetpack Compose LazyColumn + stickyHeader: focused item hidden under sticky header when navigating with keyboard or with accessibility TalkBack
I have a LazyColumn with multiple stickyHeaders. When navigating the list using keyboard, I encounter a layout issue.
Expected behavior
When an item receives focus, the list should scroll so that the ...
2
votes
0
answers
71
views
Accessibility heading not work on Android 16(SDK 36) devices [closed]
I want to add Accessibility header to Textview widget, I try to do that use:
ViewCompat.setAccessibilityDelegate(textView, object : AccessibilityDelegateCompat() {
override fun ...