diff --git a/lib/rules/presentation-role-conflict-matches.js b/lib/rules/presentation-role-conflict-matches.js index d89c28b192..e278fdca49 100644 --- a/lib/rules/presentation-role-conflict-matches.js +++ b/lib/rules/presentation-role-conflict-matches.js @@ -1,5 +1,8 @@ import { getImplicitRole } from '../commons/aria'; +/** + * @deprecated Will be removed in axe-core 5.0.0 + */ function presentationRoleConflictMatches(node, virtualNode) { return getImplicitRole(virtualNode, { chromiumRoles: true }) !== null; }