diff options
Diffstat (limited to 'components/layout/table_cell.rs')
-rw-r--r-- | components/layout/table_cell.rs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/components/layout/table_cell.rs b/components/layout/table_cell.rs index 1c04b327904..c6c438204cf 100644 --- a/components/layout/table_cell.rs +++ b/components/layout/table_cell.rs @@ -28,8 +28,12 @@ use style::values::generics::box_::VerticalAlign; use table::InternalTable; use table_row::{CollapsedBorder, CollapsedBorderProvenance}; +#[allow(unsafe_code)] +unsafe impl ::flow::HasBaseFlow for TableCellFlow {} + /// A table formatting context. #[derive(Serialize)] +#[repr(C)] pub struct TableCellFlow { /// Data common to all block flows. pub block_flow: BlockFlow, |