pub trait HTMLTableCellElementLayoutHelpers<'dom> {
    // Required methods
    fn get_background_color(self) -> Option<RgbaLegacy>;
    fn get_colspan(self) -> Option<u32>;
    fn get_rowspan(self) -> Option<u32>;
    fn get_table(self) -> Option<LayoutDom<'dom, HTMLTableElement>>;
    fn get_width(self) -> LengthOrPercentageOrAuto;
}

Required Methods§

Implementors§