diff options
author | Brandon Fairchild <csbit32@gmail.com> | 2015-09-17 17:55:01 -0400 |
---|---|---|
committer | Brandon Fairchild <csbit32@gmail.com> | 2015-09-19 12:50:14 -0400 |
commit | de3547e401a0ace8b6bfb4b488ed0be9d5b3d79c (patch) | |
tree | 1dd3e40e5a554466dfb4575758ad15967927d44d /components/layout/table_cell.rs | |
parent | e924393be8cce6cb16d3af5a13ed9f634670f843 (diff) | |
download | servo-de3547e401a0ace8b6bfb4b488ed0be9d5b3d79c.tar.gz servo-de3547e401a0ace8b6bfb4b488ed0be9d5b3d79c.zip |
Fix reported test-tidy errors for unmerged import blocks
This merges import blocks that were reported by tidy as unmerged.
Diffstat (limited to 'components/layout/table_cell.rs')
-rw-r--r-- | components/layout/table_cell.rs | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/components/layout/table_cell.rs b/components/layout/table_cell.rs index f0f1495d8bb..1cdd22bada1 100644 --- a/components/layout/table_cell.rs +++ b/components/layout/table_cell.rs @@ -8,25 +8,24 @@ use block::{BlockFlow, ISizeAndMarginsComputer, MarginsMayCollapseFlag}; use context::LayoutContext; +use cssparser::Color; use display_list_builder::{BlockFlowDisplayListBuilding, BorderPaintingMode}; +use euclid::{Point2D, Rect, SideOffsets2D, Size2D}; use flow::{Flow, FlowClass, OpaqueFlow}; use fragment::{Fragment, FragmentBorderBoxIterator}; +use gfx::display_list::DisplayList; use layout_debug; use model::MaybeAuto; -use table::InternalTable; -use table_row::{CollapsedBorder, CollapsedBorderProvenance}; -use wrapper::ThreadSafeLayoutNode; - -use cssparser::Color; -use euclid::{Point2D, Rect, SideOffsets2D, Size2D}; -use gfx::display_list::DisplayList; use std::fmt; use std::sync::Arc; use style::computed_values::{border_collapse, border_top_style}; use style::legacy::UnsignedIntegerAttribute; use style::properties::ComputedValues; +use table::InternalTable; +use table_row::{CollapsedBorder, CollapsedBorderProvenance}; use util::geometry::Au; use util::logical_geometry::{LogicalMargin, LogicalRect, LogicalSize, WritingMode}; +use wrapper::ThreadSafeLayoutNode; /// A table formatting context. #[derive(RustcEncodable)] |