pub(crate) trait HTMLTableRowElementMethods<D: DomTypes> {
    // Required methods
    fn RowIndex(&self) -> i32;
    fn SectionRowIndex(&self) -> i32;
    fn Cells(&self) -> DomRoot<D::HTMLCollection>;
    fn InsertCell(
        &self,
        index: i32,
        _can_gc: CanGc,
    ) -> Fallible<DomRoot<D::HTMLElement>>;
    fn DeleteCell(&self, index: i32) -> Fallible<()>;
    fn BgColor(&self) -> DOMString;
    fn SetBgColor(&self, value: DOMString);
}

Required Methods§

Source

fn RowIndex(&self) -> i32

Source

fn SectionRowIndex(&self) -> i32

Source

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

Source

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

Source

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

Source

fn BgColor(&self) -> DOMString

Source

fn SetBgColor(&self, value: DOMString)

Implementors§