From 4a84b9bd415dea843236a08daac06fa7e390beeb Mon Sep 17 00:00:00 2001 From: PhilippMDoerner Date: Mon, 3 Nov 2025 14:03:01 +0100 Subject: [PATCH] docs: Update ARIA Tabs design pattern link in documentation The previous link no longer links to a real webpage. It gets automatically redirected to https://www.w3.org/WAI/ARIA/apg/#tabpanel Which does not have an element with id #tabpanel. The current URL to an APG page related to tabs is https://www.w3.org/WAI/ARIA/apg/patterns/tabs/ --- src/material/tabs/tabs.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/material/tabs/tabs.md b/src/material/tabs/tabs.md index ff098e32d4c8..958da95ed3fd 100644 --- a/src/material/tabs/tabs.md +++ b/src/material/tabs/tabs.md @@ -96,7 +96,7 @@ off-screen tabs in the DOM, you can set the `preserveContent` input to `true`. ### Accessibility `MatTabGroup` and `MatTabNavBar` both implement the -[ARIA Tabs design pattern](https://www.w3.org/TR/wai-aria-practices-1.1/#tabpanel). Both components +[ARIA Tabs design pattern](https://www.w3.org/WAI/ARIA/apg/patterns/tabs/). Both components compose `tablist`, `tab`, and `tabpanel` elements with handling for keyboard inputs and focus management.