diff options
Diffstat (limited to 'components/layout/table_cell.rs')
-rw-r--r-- | components/layout/table_cell.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/layout/table_cell.rs b/components/layout/table_cell.rs index a10ac9cf7a2..3d1f1fd54e3 100644 --- a/components/layout/table_cell.rs +++ b/components/layout/table_cell.rs @@ -39,7 +39,7 @@ impl TableCellFlow { -> TableCellFlow { TableCellFlow { block_flow: BlockFlow::from_node_and_fragment(node, fragment), - column_span: node.get_unsigned_integer_attribute(UnsignedIntegerAttribute::ColSpanUnsignedIntegerAttribute) + column_span: node.get_unsigned_integer_attribute(UnsignedIntegerAttribute::ColSpan) .unwrap_or(1), visible: visible, } |