-
Notifications
You must be signed in to change notification settings - Fork 1.3k
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
A11y for scrollnode #1188
A11y for scrollnode #1188
Conversation
This reverts commit 06e18a1.
becuse ASScollView is not backed by _ASDisplayView but UIScrollView. |
@@ -271,4 +271,19 @@ - (NSArray *)accessibilityElements | |||
|
|||
@end | |||
|
|||
@implementation ASDisplayNode (AccessibilityInternal) | |||
|
|||
- (NSArray *)accessibilityElements { |
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.
Braces on new line
Source/ASScrollNode.mm
Outdated
@@ -52,6 +52,10 @@ - (void)didMoveToWindow | |||
} | |||
} | |||
|
|||
- (NSArray *)accessibilityElements { |
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.
Braces on newline
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.
Aside nits pointed out by @maicki, LGTM. Thanks!
🚫 CI failed with log |
🚫 CI failed with log |
@wsdwsd0829 The test will not pass if the accessibility inspector is not running (or was at least launched for the simulator we are testing on once). The reason is that calling We had the same issue with #1069 a while back. I would recommend handling it the same way we did in #1069 and disable the lines that are failing currently. |
Thanks @wsdwsd0829 for working on this! |
* fix SIMULATE_WEB_RESPONSE not imported TextureGroup#449 * Fix to make rangeMode update in right time * remove uncessary assert * Fix collection cell editing bug for iOS 9 & 10 * Revert "Fix collection cell editing bug for iOS 9 & 10" This reverts commit 06e18a1. * Add a11y support for ASSCrollNode. * Changelog * Clean up. * fix braces * add test * disable for ci
No description provided.