diff options
author | Xidorn Quan <me@upsuper.org> | 2017-06-08 10:42:31 +1000 |
---|---|---|
committer | Xidorn Quan <me@upsuper.org> | 2017-06-08 12:59:26 +1000 |
commit | c62935577a36ea98c9d625747cc3e4387ee9941e (patch) | |
tree | 4e716caa58a6ff080eff1007554ba6ca1ee50f94 /components/layout/table_cell.rs | |
parent | 742c45f8599272fd77cd342ca81621daa76366b6 (diff) | |
download | servo-c62935577a36ea98c9d625747cc3e4387ee9941e.tar.gz servo-c62935577a36ea98c9d625747cc3e4387ee9941e.zip |
Add separate computed Color value.
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 8c54297d4b5..47f74891488 100644 --- a/components/layout/table_cell.rs +++ b/components/layout/table_cell.rs @@ -9,7 +9,6 @@ use app_units::Au; use block::{BlockFlow, ISizeAndMarginsComputer, MarginsMayCollapseFlag}; use context::LayoutContext; -use cssparser::Color; use display_list_builder::{BlockFlowDisplayListBuilding, BorderPaintingMode, DisplayListBuildState}; use euclid::{Point2D, Rect, SideOffsets2D, Size2D}; use flow::{self, Flow, FlowClass, IS_ABSOLUTELY_POSITIONED, OpaqueFlow}; @@ -22,6 +21,7 @@ use std::fmt; use style::computed_values::{border_collapse, border_top_style, vertical_align}; use style::logical_geometry::{LogicalMargin, LogicalRect, LogicalSize, WritingMode}; use style::properties::ServoComputedValues; +use style::values::computed::Color; use table::InternalTable; use table_row::{CollapsedBorder, CollapsedBorderProvenance}; |