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