-
Notifications
You must be signed in to change notification settings - Fork 6.7k
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
fix(radio-button): Radio buttons are not tab stops in Safari #436
Conversation
Thanks for your pull request. It looks like this may be your first contribution to a Google open source project. Before we can look at your pull request, you'll need to sign a Contributor License Agreement (CLA). 📝 Please visit https://cla.developers.google.com/ to sign. Once you've signed, please reply here (e.g.
|
1 similar comment
Thanks for your pull request. It looks like this may be your first contribution to a Google open source project. Before we can look at your pull request, you'll need to sign a Contributor License Agreement (CLA). 📝 Please visit https://cla.developers.google.com/ to sign. Once you've signed, please reply here (e.g.
|
I signed it! |
CLAs look good, thanks! |
1 similar comment
CLAs look good, thanks! |
sorry about that!
… ngModel property is removed fixes #327
Thanks for your contribution! However, this issue was fixed as part of this PR: #415 |
@robertmesserle what about this one? d56946a sorry, i had to make a different pr, it refers #327 |
@trik We do still need a fix for this, but when I tried applying that commit to master and running the tests, it doesn't appear to fix the bug. Were there other changes in one of the other commits required to make this work? |
@robertmesserle no, only that one.. why it doesn't fix? in then unit test i set a value for the radio group model and i get one button selected, then i set the model to null and all buttons are de-selected |
The failure I get is on the test you added. It needed the following line: this._radios.forEach(radio => radio.checked = false); Without that, it never actually unchecked any of the child radio buttons. |
Ah, I see why your tests weren't failing. Your tests were never running. There was a bug in the radio button tests where There were some other changes required to make this work as well. I'll open a PR with the working changes and mention you in it. |
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. |
No description provided.