Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor(select): use aria-activedescendant to manage focus
* Refactors the select to use `aria-activedescendant` to announce the highlighted item to screen readers. Previously we would this through focus, however using focus prevents us from being able to do things like angular#3211. * Fixes a hack that was used to get a hold of the panel element using `querySelector`. Now it properly uses a `ViewChild` query, however this meant some tests had to be updated. Relates to angular#3211. Fixes angular#6690.
- Loading branch information