pub(crate) trait CSSStyleSheetMethods<D: DomTypes> {
    // Required methods
    fn GetCssRules(&self) -> Fallible<DomRoot<D::CSSRuleList>>;
    fn InsertRule(&self, rule: DOMString, index: u32) -> Fallible<u32>;
    fn DeleteRule(&self, index: u32) -> Fallible<()>;
}

Required Methods§

Source

fn GetCssRules(&self) -> Fallible<DomRoot<D::CSSRuleList>>

Source

fn InsertRule(&self, rule: DOMString, index: u32) -> Fallible<u32>

Source

fn DeleteRule(&self, index: u32) -> Fallible<()>

Implementors§