///|
// Table display classification helpers shared by style resolution and layout.
///|
/// Check if a tag name is a table-related element
fn is_table_element(tag : String) -> Bool {
match tag.to_lower() {
"table"
| "tr"
| "td"
| "th"
| "thead"
| "tbody"
| "tfoot"
| "caption"
| "colgroup"
| "col" => true
_ => false
}
}
///|
/// Check if a display value is table-related
fn is_table_display(display : @types.Display) -> Bool {
match display {
@types.Table
| @types.InlineTable
| @types.TableRow
| @types.TableCell
| @types.TableCaption
| @types.TableRowGroup
| @types.TableHeaderGroup
| @types.TableFooterGroup
| @types.TableColumn
| @types.TableColumnGroup => true
_ => false
}
}
///|
fn is_no_principal_table_internal_display(display : @types.Display) -> Bool {
match display {
@types.TableRow
| @types.TableRowGroup
| @types.TableHeaderGroup
| @types.TableFooterGroup
| @types.TableColumn
| @types.TableColumnGroup => true
_ => false
}
}