accessibility Questions
5
Solved
Sveltekit has very strict a11y checks, for instance you can't just add on:click to a div.
I can suppress it on a per-line bases, e.g.:
<!-- svelte-ignore a11y-click-events-have-key-events -->...
Covenantor asked 20/11, 2023 at 19:33
0
I have the below code, which is a button tag inside that I have a icon inside tag
( previously I added tag to show the icon, but then had to change to because there was a SonarQube code smell issue...
Hispanicize asked 29/8 at 19:25
1
On running the following code:
let pid = getAppPid()
let AXApp = AXUIElementCreateApplication(pid)
var children: CFTypeRef?
let returnVal = AXUIElementCopyAttributeValue(AXApp,
kAXChildrenAttrib...
Blakey asked 6/11, 2017 at 19:13
1
When opening a Dialog in Jetpack Compose, Talkback will always read the application label, before reading the Dialog title.
I have already tried setting the activity lable in the manifest to someth...
Solberg asked 12/12, 2022 at 22:31
4
Solved
I'm working in a mixed-match app where we use React Native components for a few modules. In this case, I've a tableview in which we add RN components in a few of the cells.
I was able to enable ac...
Depend asked 23/4, 2020 at 8:48
6
Is there a standard way to make screen readers spell out numbers?
I am currently using NVDA and Firefox and have the following telephone number
<p>01234 567890</p>
This is read as
...
Demount asked 17/2, 2014 at 15:24
3
I am trying to toggle an aria tag between true and false when a button is clicked. I've tried several implementations which seems to do absolutely nothing. Below is what I am currently using which ...
Fouts asked 8/11, 2021 at 18:39
10
I am working on making an overlay modal more accessible. It works essentially like this JSFiddle. When you open the modal, the focus doesn't properly go into the modal, and it continues to focus on...
Radiomicrometer asked 10/7, 2017 at 17:15
12
Solved
How can I hide an HTML form legend from visual browsers, using CSS, in an accessible way?
legend { display: none; }
is not an option because, as I understand it, this will 'hide' the legend from...
Bini asked 8/7, 2009 at 10:59
3
Solved
I'm trying to use the Java Access Bridge to get information about Swing components from inside a C++ app. However, none of the callbacks I register ever get called. I tried enuming the windows an t...
Lamellicorn asked 21/7, 2009 at 19:11
2
Solved
Is it possible to change the accessibility focus order? For example, if I have 3 views side by side, with ids view1, view2, and view3, is there a simple way to make the accessibility focus go to vi...
Atonal asked 4/11, 2014 at 7:38
14
Solved
We use KIF for our functional testing, and it uses the accessibility label of elements to determine where to send events. I'm currently trying to test the behaviour of a UISegmentedControl, but in ...
Bounder asked 12/1, 2012 at 11:1
3
Is the following HTML accessible?
<a id="myClickbaitArticlePreview" href="someUrl">
<h3>Amazing lifehack! Doctors hate him!</h3>
<img alt="doctor is...
Canova asked 12/1, 2021 at 9:55
2
I have a button on screen. When a user taps that button, my app opens a modal (view). When the user then closes that view, the focus of accessibility VoiceOver goes to the top of the screen. In UIK...
Ancilin asked 4/3, 2021 at 7:3
8
I have 2 buttons next to a textbox and another textbox after the 2 buttons. The tabindex for the first textbox is 1000, the first button is 1001 and the second button is 1002. The second textbox ha...
Telephonic asked 4/12, 2009 at 17:14
1
As far as I can tell, it is in part determined by the HTML spec's History API1, specifically the value of history.scrollRestoration. Quoting the HTML spec's scroll restoration mode paragraph:
&qu...
Leekgreen asked 13/4 at 2:1
7
I have this issue in 2 of my activities. When I navigate using keyboard Tab keys or arrow keys - I am unable to reach any element in the App bar.
1) Activity 1 -> My appbar has a hamburger menu ic...
Friedlander asked 9/3, 2018 at 19:20
4
Solved
I'm trying to make a form accessible. Should I make my inputs have both disabled and aria-disabled attributes, or just one?
<label for="textbox1">Input</label>
<input id="textbox1" ...
Confiscatory asked 27/6, 2016 at 16:43
6
Solved
Is there any attribute like tab-index?
CONTEXT : I'm making a section in a web form visible or invisible depending on some condition where I want to set the tab-index manually when that particular...
Counselor asked 22/9, 2010 at 18:24
4
I have a simple UIView hierarchy. There is a parent view A which contains view B and C. If I set all views as accessibility element, only view A is accessible. Views B and C are not clickable. I ne...
Rissole asked 9/8, 2016 at 11:24
3
I am implementing a search box. One of the scenarios is that the total count of results must be announced. To achieve this I put the <p> tag inside of an aria-live region, and it announces it...
Katakana asked 6/4, 2020 at 20:11
13
I have a modal popup opened. I have accessibility requirement. So added ARIA related labels. But when i click tab key continuously focus going to the page behind the actual page.
Added role="dialo...
Bathsheb asked 4/5, 2018 at 15:30
8
Solved
Go to this ultra-simple fiddle in a Webkit browser and click on on of the inputs:
http://jsfiddle.net/eK4TT/
<input type="text">
<input type="text">
<input type="text">
<a hr...
Weaks asked 28/7, 2012 at 21:35
4
Solved
I've always frowned upon skipping heading levels in HTML documents, especially for reasons of screenreader accessibility. Additionally the requirement that a page's structure makes sense without CS...
Bickart asked 8/1, 2012 at 15:40
2
Solved
What is most simple way to make "roving tabindex" in React? It's basically switch focus and tabindex=0/-1 between child elements. Only a single element have tabindex of 0, while other receives -1. ...
Cyrene asked 23/8, 2018 at 19:24
1 Next >
© 2022 - 2024 — McMap. All rights reserved.