diff options
Diffstat (limited to 'components/layout/table_rowgroup.rs')
-rw-r--r-- | components/layout/table_rowgroup.rs | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/components/layout/table_rowgroup.rs b/components/layout/table_rowgroup.rs index 752ad573a12..55d23b2b55e 100644 --- a/components/layout/table_rowgroup.rs +++ b/components/layout/table_rowgroup.rs @@ -5,25 +5,25 @@ //! CSS table formatting contexts. use app_units::Au; -use block::{BlockFlow, ISizeAndMarginsComputer}; -use context::LayoutContext; -use display_list::{BlockFlowDisplayListBuilding, DisplayListBuildState}; -use display_list::{StackingContextCollectionFlags, StackingContextCollectionState}; +use crate::block::{BlockFlow, ISizeAndMarginsComputer}; +use crate::context::LayoutContext; +use crate::display_list::{BlockFlowDisplayListBuilding, DisplayListBuildState}; +use crate::display_list::{StackingContextCollectionFlags, StackingContextCollectionState}; use euclid::Point2D; -use flow::{Flow, FlowClass, OpaqueFlow}; -use fragment::{Fragment, FragmentBorderBoxIterator, Overflow}; +use crate::flow::{Flow, FlowClass, OpaqueFlow}; +use crate::fragment::{Fragment, FragmentBorderBoxIterator, Overflow}; use gfx_traits::print_tree::PrintTree; -use layout_debug; +use crate::layout_debug; use serde::{Serialize, Serializer}; use std::fmt; use std::iter::{IntoIterator, Iterator, Peekable}; use style::computed_values::{border_collapse, border_spacing}; use style::logical_geometry::LogicalSize; use style::properties::ComputedValues; -use table::{ColumnIntrinsicInlineSize, InternalTable, TableLikeFlow}; +use crate::table::{ColumnIntrinsicInlineSize, InternalTable, TableLikeFlow}; #[allow(unsafe_code)] -unsafe impl ::flow::HasBaseFlow for TableRowGroupFlow {} +unsafe impl crate::flow::HasBaseFlow for TableRowGroupFlow {} /// A table formatting context. #[repr(C)] @@ -224,7 +224,7 @@ impl Flow for TableRowGroupFlow { ); } - fn repair_style(&mut self, new_style: &::ServoArc<ComputedValues>) { + fn repair_style(&mut self, new_style: &crate::ServoArc<ComputedValues>) { self.block_flow.repair_style(new_style) } |