Skip to content

Commit e6fa9ed

Browse files
committed
fix(#21): address round-2 Copilot review (drop JSDoc refs to non-existent rule/util)
1 parent f6020b6 commit e6fa9ed

1 file changed

Lines changed: 4 additions & 7 deletions

File tree

lib/utils/is-native-element.js

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -68,17 +68,14 @@ const ELEMENT_TAGS = new Set([...htmlTags, ...svgTags, ...mathmlTagNames, ...OBS
6868
*
6969
* - "native accessibility" / "widget-ness" — see `interactive-roles.js`
7070
* (aria-query widget taxonomy; an ARIA-tree-semantics question)
71-
* - "native interactive content" / "focus behavior" — see
72-
* `html-interactive-content.js` (HTML §3.2.5.2.7; an HTML-content-model
73-
* question about which tags can be nested inside what)
71+
* - "native interactive content" / "focus behavior" — an HTML content-model
72+
* question about which tags can be nested inside what
7473
* - "natively focusable" / sequential-focus — see HTML §6.6.3
7574
*
7675
* This util answers only: "is this tag a first-class built-in element of one
7776
* of the three markup-language standards, rather than a component invocation
78-
* or a shadowed local binding?" Callers compose it with the other utils
79-
* above when they need a more specific question (see e.g. `template-no-
80-
* noninteractive-tabindex`, which consults both this and
81-
* `html-interactive-content`).
77+
* or a shadowed local binding?" Callers can compose it with other
78+
* rule-specific checks when they need a more specific question.
8279
*
8380
* Returns false for:
8481
* - components (PascalCase, dotted, @-prefixed, this.-prefixed, ::-namespaced —

0 commit comments

Comments
 (0)