Trait HTMLFieldSetElementMethods
Source pub(crate) trait HTMLFieldSetElementMethods<D>{
Show 13 methods
// Required methods
fn Disabled(&self) -> bool;
fn SetDisabled(&self, value: bool);
fn GetForm(&self) -> Option<Root<Dom<<D as DomTypes>::HTMLFormElement>>>;
fn Name(&self) -> DOMString;
fn SetName(&self, value: DOMString);
fn Type(&self) -> DOMString;
fn Elements(
&self,
_can_gc: CanGc,
) -> Root<Dom<<D as DomTypes>::HTMLCollection>>;
fn WillValidate(&self) -> bool;
fn Validity(&self) -> Root<Dom<<D as DomTypes>::ValidityState>>;
fn ValidationMessage(&self) -> DOMString;
fn CheckValidity(&self, _can_gc: CanGc) -> bool;
fn ReportValidity(&self, _can_gc: CanGc) -> bool;
fn SetCustomValidity(&self, error: DOMString);
}