diff options
author | Pyfisch <pyfisch@gmail.com> | 2018-03-24 21:50:15 +0100 |
---|---|---|
committer | Pyfisch <pyfisch@gmail.com> | 2018-04-22 13:13:45 +0200 |
commit | c0be925bed2296e5cf16c95925016fa18d28e177 (patch) | |
tree | b662ba7936493d144d78b3c1609077c213636902 /components/layout/construct.rs | |
parent | 782d4d4af61b7c9f60dfb494f8a5bfb6407945d2 (diff) | |
download | servo-c0be925bed2296e5cf16c95925016fa18d28e177.tar.gz servo-c0be925bed2296e5cf16c95925016fa18d28e177.zip |
Move DL items from gfx to layout
Implement corner clipping.
Remove PixelFormat from WebrenderImageInfo.
Use WebRender text shadow.
Remove MallocSizeOf and Deserialize for DL items.
Closes #19649, #19680, #19802
Diffstat (limited to 'components/layout/construct.rs')
-rw-r--r-- | components/layout/construct.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/layout/construct.rs b/components/layout/construct.rs index 3849e43ad51..9fbd70d9040 100644 --- a/components/layout/construct.rs +++ b/components/layout/construct.rs @@ -17,6 +17,7 @@ use ServoArc; use block::BlockFlow; use context::{LayoutContext, with_thread_local_font_context}; use data::{LayoutDataFlags, LayoutData}; +use display_list::items::OpaqueNode; use flex::FlexFlow; use floats::FloatKind; use flow::{AbsoluteDescendants, Flow, FlowClass, GetBaseFlow, ImmutableFlowUtils}; @@ -27,7 +28,6 @@ use fragment::{Fragment, GeneratedContentInfo, IframeFragmentInfo, FragmentFlags use fragment::{InlineAbsoluteHypotheticalFragmentInfo, TableColumnFragmentInfo}; use fragment::{InlineBlockFragmentInfo, SpecificFragmentInfo, UnscannedTextFragmentInfo}; use fragment::WhitespaceStrippingResult; -use gfx::display_list::OpaqueNode; use inline::{InlineFlow, InlineFragmentNodeInfo, InlineFragmentNodeFlags}; use linked_list::prepend_from; use list_item::{ListItemFlow, ListStyleTypeContent}; |