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.
9 lines
307 B
9 lines
307 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.some(dom.isFocusable);
|