-
Notifications
You must be signed in to change notification settings - Fork 743
New issue
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
docs: Adjust a11y documentation #18978
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -90,13 +90,10 @@ When the value of `WinRTFeatureConfiguration.Accessibility.HighContrast` is chan | |
|
||
## Known issues | ||
|
||
- `Hyperlink` in `TextBlock` is not supported. | ||
- `TextBox` and `PasswordBox` don't use `Header` and `PlaceholderText`. | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Same here, I think on a11y focus it's expected that screen readers will read the header and placeholder. |
||
- `ItemsControl` doesn't use `AutomationProperties.Name` on its `DataTemplate`'s root. | ||
- There are XAML code generation conflicts between `x:Name` and `AutomationProperties.Name`. | ||
- A child with the same accessible name as its parent is accessibility focusable. | ||
- `Control` doesn't receive focus when accessibility focused. | ||
- `TabIndex` is not supported. | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Are you sure this is supported from a11y point of view? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Good point, I read these only from the implementation perspective, not A11y perspective. Makes sense to keep it there then |
||
- On iOS, nested accessible elements are not accessibility focusable. | ||
- On Android, both `ToggleSwitch` and its native `Switch` can be accessibility focused. | ||
- On Android, both `TextBox` and its native `EditText` can be accessibility focused. | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Same here, is this supported from a11y point of view?
I think screen readers are expected to read the text, be able to tell it's hyperlink, and double tapping with a11y focus should open the link. Does it work that way?