aboutsummaryrefslogtreecommitdiffstats
path: root/components/layout/table_cell.rs
diff options
context:
space:
mode:
authorPyfisch <pyfisch@gmail.com>2018-01-04 13:34:04 +0100
committerPyfisch <pyfisch@gmail.com>2018-01-06 20:19:32 +0100
commitea062e6e47e0e75c2199fa70215362a28e05a5d1 (patch)
tree57aaa5be9de21f34a45601b454d3c5d5cce7b382 /components/layout/table_cell.rs
parent989d2fd53267d063212ef3b7b7f13f2402943c4a (diff)
downloadservo-ea062e6e47e0e75c2199fa70215362a28e05a5d1.tar.gz
servo-ea062e6e47e0e75c2199fa70215362a28e05a5d1.zip
Create own file for background calculations in layout
Move display_list_builder.rs and webrender_helpers.rs along with the new file to components/layout/display_list/ Remove apparently unused IdType enum. Only variant used was OverflowClip. See #19676
Diffstat (limited to 'components/layout/table_cell.rs')
-rw-r--r--components/layout/table_cell.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/components/layout/table_cell.rs b/components/layout/table_cell.rs
index 81f9e32661a..438e30d96fe 100644
--- a/components/layout/table_cell.rs
+++ b/components/layout/table_cell.rs
@@ -9,9 +9,9 @@
use app_units::Au;
use block::{BlockFlow, ISizeAndMarginsComputer, MarginsMayCollapseFlag};
use context::LayoutContext;
-use display_list_builder::{BlockFlowDisplayListBuilding, BorderPaintingMode};
-use display_list_builder::{DisplayListBuildState, StackingContextCollectionFlags};
-use display_list_builder::StackingContextCollectionState;
+use display_list::{BlockFlowDisplayListBuilding, BorderPaintingMode};
+use display_list::{DisplayListBuildState, StackingContextCollectionFlags};
+use display_list::StackingContextCollectionState;
use euclid::{Point2D, Rect, SideOffsets2D, Size2D};
use flow::{Flow, FlowClass, FlowFlags, GetBaseFlow, OpaqueFlow};
use fragment::{Fragment, FragmentBorderBoxIterator, Overflow};