Forgo currently exports one list of HTMLAttributes which applies to all elements in HTMLElementTagNameMap (with exception of HTMLMarqueeElement, which is unused). Not all attributes listed in HTMLAttributes apply to all elements, making it possible for invalid properties to exist on certain elements.
For example, acceptCharset is only valid on form.
Is there a possibility for these properties to be more specific?
Forgo currently exports one list of
HTMLAttributeswhich applies to all elements inHTMLElementTagNameMap(with exception ofHTMLMarqueeElement, which is unused). Not all attributes listed inHTMLAttributesapply to all elements, making it possible for invalid properties to exist on certain elements.For example,
acceptCharsetis only valid onform.Is there a possibility for these properties to be more specific?