From 0f02a1530b91dd38cbc620e358e403f5250cba4c Mon Sep 17 00:00:00 2001 From: Wilco Fiers Date: Wed, 7 Sep 2022 17:19:57 +0200 Subject: [PATCH] feat: deprecate presentation-role-conflict-matchess (#3638) --- lib/rules/presentation-role-conflict-matches.js | 3 +++ 1 file changed, 3 insertions(+) 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; }