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);
}