-
Notifications
You must be signed in to change notification settings - Fork 6.8k
chore: Make accessibility demo page focus goes to header after clicki… #7188
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
Conversation
src/demo-app/a11y/a11y.html
Outdated
{{navItem.name}} | ||
</a> | ||
</nav> | ||
|
||
<div #maincontent tabindex="0"> | ||
<h1 #header tabindex="0" *ngIf="!!currentComponent">{{currentComponent}} Demo</h1> |
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.
We should make the tabindex="-1"
so that it can be focused programmatically without being in the tab order
skipNavigation() { | ||
this.mainContent.nativeElement.scrollIntoView(); | ||
this.mainContent.nativeElement.focus(); | ||
(this.currentComponent ? this.sectionHeader : this.mainContent).nativeElement.focus(); |
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.
Did you find that this worked well without a timeout? If so that works for me.
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.
This worked well without a timeout. I tested with chromeVox and VoiceOver.
7f74d01
to
ecdca2c
Compare
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.
LGTM
This issue has been automatically locked due to inactivity. Read more about our automatic conversation locking policy. This action has been performed automatically by a bot. |
…ng on links