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

Required Methods§

source

fn Get(&self, property: DOMString) -> Option<Root<Dom<CSSStyleValue>>>

source

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

source

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

Implementors§