pub(crate) trait StylePropertyMapReadOnlyMethods<D: DomTypes> {
    // Required methods
    fn Get(&self, property: DOMString) -> Option<DomRoot<D::CSSStyleValue>>;
    fn Has(&self, property: DOMString) -> bool;
    fn GetProperties(&self) -> Vec<DOMString>;
}

Required Methods§

Source

fn Get(&self, property: DOMString) -> Option<DomRoot<D::CSSStyleValue>>

Source

fn Has(&self, property: DOMString) -> bool

Source

fn GetProperties(&self) -> Vec<DOMString>

Implementors§