-
Notifications
You must be signed in to change notification settings - Fork 6.8k
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
mat-dialog-close wrongly adds an aria-label when the button text content is bound rather than static #15542
Labels
Accessibility
This issue is related to accessibility (a11y)
G
This is is related to a Google internal issue
P2
The issue is important to a large percentage of users, with a workaround
Comments
@crisbeto we should probably just use a mutation observer here |
crisbeto
added a commit
to crisbeto/material2
that referenced
this issue
Mar 23, 2019
…er init Currently we set an `aria-label` on the `mat-dialog-close` button if it's an icon button or it doesn't have text, however it wasn't accounting for the case where the text comes in at a later point. Fixes angular#15542.
crisbeto
added a commit
to crisbeto/material2
that referenced
this issue
Mar 23, 2019
…er init Currently we set an `aria-label` on the `mat-dialog-close` button if it's an icon button or it doesn't have text, however it wasn't accounting for the case where the text comes in at a later point. Fixes angular#15542.
crisbeto
added a commit
to crisbeto/material2
that referenced
this issue
Mar 23, 2019
…er init Currently we set an `aria-label` on the `mat-dialog-close` button if it's an icon button or it doesn't have text, however it wasn't accounting for the case where the text comes in at a later point. Fixes angular#15542.
crisbeto
added a commit
to crisbeto/material2
that referenced
this issue
Mar 29, 2019
Currently we add an `aria-label` by default to close buttons that don't have text. This is unreliable, because text can come in at any time and it takes a lot of code to keep track of it. Furthermore, the default text is in English which means that sites in different languages will have to override it anyway. These changes remove the default `aria-label` and add some guidance to the docs on how to deal with labelling the close button. Fixes angular#15542.
mmalerba
pushed a commit
that referenced
this issue
Apr 3, 2019
Currently we add an `aria-label` by default to close buttons that don't have text. This is unreliable, because text can come in at any time and it takes a lot of code to keep track of it. Furthermore, the default text is in English which means that sites in different languages will have to override it anyway. These changes remove the default `aria-label` and add some guidance to the docs on how to deal with labelling the close button. Fixes #15542.
jelbourn
pushed a commit
that referenced
this issue
Apr 4, 2019
Currently we add an `aria-label` by default to close buttons that don't have text. This is unreliable, because text can come in at any time and it takes a lot of code to keep track of it. Furthermore, the default text is in English which means that sites in different languages will have to override it anyway. These changes remove the default `aria-label` and add some guidance to the docs on how to deal with labelling the close button. Fixes #15542.
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. |
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Labels
Accessibility
This issue is related to accessibility (a11y)
G
This is is related to a Google internal issue
P2
The issue is important to a large percentage of users, with a workaround
What is the expected behavior?
When I have
<button mat-dialog-close>Submit</button>
in a template, I expect for the resulting HTML to be basically the same, and mat-dialog-close should not add an aria label to the button.What is the current behavior?
<button mat-dialog-close aria-label="Close dialog">Submit</button>
What are the steps to reproduce?
https://stackblitz.com/edit/angular-j9paiz?file=app/dialog-overview-example-dialog.html
Which versions of Angular, Material, OS, TypeScript, browsers are affected?
Head.
Is there anything else we should know?
This area was partly addressed in #11093 but has this remaining bug. A workaround is available (just set aria-label explicitly in addition to the inner content), but this is not ideal.
stevenyxu@6645309 demonstrates the bug in the form of a failing unit test. I tried to do a fix but couldn't quickly come up with a performant solution without more work.
The text was updated successfully, but these errors were encountered: