You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
327 B
12 lines
327 B
const { dom, aria } = axe.commons;
|
|
const id = node.getAttribute('id').trim();
|
|
const idSelector = `*[id="${axe.utils.escapeSelector(id)}"]`;
|
|
const idMatchingElms = Array.from(
|
|
dom.getRootNode(node).querySelectorAll(idSelector)
|
|
);
|
|
|
|
return (
|
|
!aria.isAccessibleRef(node) &&
|
|
idMatchingElms.every(elm => !dom.isFocusable(elm))
|
|
);
|