pub trait TextMethods {
    // Required methods
    fn SplitText(&self, offset: u32) -> Result<Root<Dom<Text>>, Error>;
    fn WholeText(&self) -> DOMString;
}

Required Methods§

source

fn SplitText(&self, offset: u32) -> Result<Root<Dom<Text>>, Error>

source

fn WholeText(&self) -> DOMString

Implementors§