From 2f439b3fdb7e7fa3228e663c5313af0f08aa4327 Mon Sep 17 00:00:00 2001 From: Scott O'Hara Date: Fri, 8 Oct 2021 11:42:03 -0400 Subject: [PATCH] fix(aria-allowed-role): updates the allowed roles for the wbr element to none and presentation (#3192) related to issue #3177 --- lib/standards/html-elms.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/standards/html-elms.js b/lib/standards/html-elms.js index 3b854e1b71..472529b5fe 100644 --- a/lib/standards/html-elms.js +++ b/lib/standards/html-elms.js @@ -936,7 +936,7 @@ const htmlElms = { }, wbr: { contentTypes: ['phrasing', 'flow'], - allowedRoles: true + allowedRoles: ['presentation', 'none'] } };