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