pub(crate) trait HTMLStyleElementMethods<D: DomTypes> {
    // Required methods
    fn Disabled(&self) -> bool;
    fn SetDisabled(&self, value: bool);
    fn Media(&self) -> DOMString;
    fn SetMedia(&self, value: DOMString);
    fn Type(&self) -> DOMString;
    fn SetType(&self, value: DOMString);
    fn GetSheet(&self) -> Option<DomRoot<D::StyleSheet>>;
}

Required Methods§

Source

fn Disabled(&self) -> bool

Source

fn SetDisabled(&self, value: bool)

Source

fn Media(&self) -> DOMString

Source

fn SetMedia(&self, value: DOMString)

Source

fn Type(&self) -> DOMString

Source

fn SetType(&self, value: DOMString)

Source

fn GetSheet(&self) -> Option<DomRoot<D::StyleSheet>>

Implementors§