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