You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Rule Name: Links with identical accessible names and same context serve equivalent purpose
WCAG SC: 2.4.4 Link Purpose (In Context) (Level A)
What it checks
This rule checks that links with identical accessible names that are in the same context point to equivalent resources.
Feasibility
DOM-only feasible. Involves finding links with the same accessible name, grouping by context, and checking if href attributes point to equivalent resources.
The existing identical-links-same-purpose scanner rule (mapped to ACT rule b20e66) covers links regardless of context; this is the same-context variant
May be able to extend the existing rule implementation
ACT Rule
What it checks
This rule checks that links with identical accessible names that are in the same context point to equivalent resources.
Feasibility
DOM-only feasible. Involves finding links with the same accessible name, grouping by context, and checking if href attributes point to equivalent resources.
Notes
identical-links-same-purposescanner rule (mapped to ACT rule b20e66) covers links regardless of context; this is the same-context variant