HTMLTableSectionElementMethods

pub trait HTMLTableSectionElementMethods<D: DomTypes> {
    // Required methods
    fn Rows(&self) -> DomRoot<D::HTMLCollection>;
    fn InsertRow(
        &self,
        cx: &mut JSContext,
        index: i32,
    ) -> Fallible<DomRoot<D::HTMLElement>>;
    fn DeleteRow(&self, index: i32) -> Fallible<()>;
}

Required Methods§

Source

fn Rows(&self) -> DomRoot<D::HTMLCollection>

Source

fn InsertRow( &self, cx: &mut JSContext, index: i32, ) -> Fallible<DomRoot<D::HTMLElement>>

Source

fn DeleteRow(&self, index: i32) -> Fallible<()>

Implementors§