diff options
author | Pyfisch <pyfisch@gmail.com> | 2018-01-04 13:34:04 +0100 |
---|---|---|
committer | Pyfisch <pyfisch@gmail.com> | 2018-01-06 20:19:32 +0100 |
commit | ea062e6e47e0e75c2199fa70215362a28e05a5d1 (patch) | |
tree | 57aaa5be9de21f34a45601b454d3c5d5cce7b382 /components/layout/table_caption.rs | |
parent | 989d2fd53267d063212ef3b7b7f13f2402943c4a (diff) | |
download | servo-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_caption.rs')
-rw-r--r-- | components/layout/table_caption.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/components/layout/table_caption.rs b/components/layout/table_caption.rs index c6425e93b4e..63292cfbb55 100644 --- a/components/layout/table_caption.rs +++ b/components/layout/table_caption.rs @@ -9,8 +9,8 @@ use app_units::Au; use block::BlockFlow; use context::LayoutContext; -use display_list_builder::{BlockFlowDisplayListBuilding, DisplayListBuildState}; -use display_list_builder::{StackingContextCollectionFlags, StackingContextCollectionState}; +use display_list::{BlockFlowDisplayListBuilding, DisplayListBuildState}; +use display_list::{StackingContextCollectionFlags, StackingContextCollectionState}; use euclid::Point2D; use flow::{Flow, FlowClass, OpaqueFlow}; use fragment::{Fragment, FragmentBorderBoxIterator, Overflow}; |