We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 545ed9c commit 0929e48Copy full SHA for 0929e48
1 file changed
lib/rules/template-no-nested-interactive.js
@@ -128,7 +128,9 @@ module.exports = {
128
}
129
130
// ARIA widget roles (author-declared interactivity — separate authority
131
- // from HTML content-model; see `docs/architectural/interactive.md`).
+ // from HTML content-model: `html-interactive-content.js` speaks to the
132
+ // HTML §3.2.5.2.7 content model, while `interactive-roles.js` speaks to
133
+ // the WAI-ARIA 1.2 widget taxonomy).
134
const role = getTextAttr(node, 'role');
135
if (role && INTERACTIVE_ROLES.has(role)) {
136
return true;
0 commit comments