Trait script::dom::bindings::codegen::Bindings::HTMLTableRowElementBinding::HTMLTableRowElement_Binding::HTMLTableRowElementMethods
source · pub trait HTMLTableRowElementMethods {
// Required methods
fn RowIndex(&self) -> i32;
fn SectionRowIndex(&self) -> i32;
fn Cells(&self) -> Root<Dom<HTMLCollection>>;
fn InsertCell(
&self,
index: i32,
_can_gc: CanGc,
) -> Result<Root<Dom<HTMLElement>>, Error>;
fn DeleteCell(&self, index: i32) -> Result<(), Error>;
fn BgColor(&self) -> DOMString;
fn SetBgColor(&self, value: DOMString);
}