From e61b8498ad446815a4e861f432e88ed8621256f1 Mon Sep 17 00:00:00 2001 From: DBowen33 Date: Wed, 17 Jul 2024 20:49:31 +0000 Subject: [PATCH] fix(material/chips): add aria-hidden to host chip add aria-hidden to host chip so Talkback ignores element fixes b/286286473 --- src/material/chips/chip.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/material/chips/chip.ts b/src/material/chips/chip.ts index 21b7308b375e..43af57f750ba 100644 --- a/src/material/chips/chip.ts +++ b/src/material/chips/chip.ts @@ -87,6 +87,7 @@ export interface MatChipEvent { '[attr.role]': 'role', '[attr.tabindex]': '_getTabIndex()', '[attr.aria-label]': 'ariaLabel', + '[attr.aria-hidden]': 'true', '(keydown)': '_handleKeydown($event)', }, encapsulation: ViewEncapsulation.None,