pub(crate) trait HTMLTableSectionElementMethods<D>where
D: DomTypes,{
// Required methods
fn Rows(&self) -> Root<Dom<<D as DomTypes>::HTMLCollection>>;
fn InsertRow(
&self,
index: i32,
_can_gc: CanGc,
) -> Result<Root<Dom<<D as DomTypes>::HTMLElement>>, Error>;
fn DeleteRow(&self, index: i32) -> Result<(), Error>;
}