StyleSheetMethods

pub trait StyleSheetMethods<D: DomTypes> {
    // Required methods
    fn Type(&self) -> DOMString;
    fn GetHref(&self) -> Option<DOMString>;
    fn GetOwnerNode(&self) -> Option<DomRoot<D::Element>>;
    fn GetTitle(&self) -> Option<DOMString>;
    fn Media(&self, cx: &mut JSContext) -> DomRoot<D::MediaList>;
    fn Disabled(&self) -> bool;
    fn SetDisabled(&self, value: bool);
}

Required Methods§

Source

fn Type(&self) -> DOMString

Source

fn GetHref(&self) -> Option<DOMString>

Source

fn GetOwnerNode(&self) -> Option<DomRoot<D::Element>>

Source

fn GetTitle(&self) -> Option<DOMString>

Source

fn Media(&self, cx: &mut JSContext) -> DomRoot<D::MediaList>

Source

fn Disabled(&self) -> bool

Source

fn SetDisabled(&self, value: bool)

Implementors§