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

Required Methods§

Source

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

Source

fn InsertRow( &self, index: i32, _can_gc: CanGc, ) -> Fallible<DomRoot<D::HTMLElement>>

Source

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

Implementors§