diff --git a/src/util/isInteractiveElement.js b/src/util/isInteractiveElement.js index 0f971454..a9e3f991 100644 --- a/src/util/isInteractiveElement.js +++ b/src/util/isInteractiveElement.js @@ -82,6 +82,12 @@ function checkIsInteractiveElement(tagName, attributes): boolean { && attributesComparator(elementSchema.attributes, attributes) ); } + + // TODO: remove this when aria-query and axobject-query are upgraded + if (tagName === 'summary') { + return false; + } + // Check in elementRoles for inherent interactive role associations for // this element. const isInherentInteractiveElement = some(iterFrom(interactiveElementRoleSchemas), elementSchemaMatcher);