mirror of
https://github.com/leptos-rs/leptos.git
synced 2025-12-27 09:54:41 -05:00
chore: add name attribute to details element (#4190)
This commit is contained in:
@@ -269,7 +269,7 @@ html_elements! {
|
||||
/// The `<del>` HTML element represents a range of text that has been deleted from a document. This can be used when rendering "track changes" or source code diff information, for example. The ins element can be used for the opposite purpose: to indicate text that has been added to the document.
|
||||
del HtmlModElement [cite, datetime] true,
|
||||
/// The `<details>` HTML element creates a disclosure widget in which information is visible only when the widget is toggled into an "open" state. A summary or label must be provided using the summary element.
|
||||
details HtmlDetailsElement [open] true,
|
||||
details HtmlDetailsElement [name, open] true,
|
||||
/// The `<dfn>` HTML element is used to indicate the term being defined within the context of a definition phrase or sentence. The p element, the dt/dd pairing, or the section element which is the nearest ancestor of the `<dfn>` is considered to be the definition of the term.
|
||||
dfn HtmlElement [] true,
|
||||
/// The `<dialog>` HTML element represents a dialog box or other interactive component, such as a dismissible alert, inspector, or subwindow.
|
||||
|
||||
Reference in New Issue
Block a user