add disabled, form and name attributes to fieldset (#2947)

This commit is contained in:
Chung 2024-09-11 06:21:58 +10:00 committed by GitHub
parent eecefb796e
commit b20db13e84
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1391,7 +1391,11 @@ builder_constructors! {
/// Build a /// Build a
/// [`<fieldset>`](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/fieldset) /// [`<fieldset>`](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/fieldset)
/// element. /// element.
fieldset None {}; fieldset None {
disabled: Bool DEFAULT,
form: Id DEFAULT,
name: Id DEFAULT,
};
/// Build a /// Build a
/// [`<form>`](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/form) /// [`<form>`](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/form)