diff options
author | bors-servo <metajack+bors@gmail.com> | 2015-01-30 15:27:53 -0700 |
---|---|---|
committer | bors-servo <metajack+bors@gmail.com> | 2015-01-30 15:27:53 -0700 |
commit | 172aed535be3c34775824dac64ad2b91fc379ad5 (patch) | |
tree | 265b0c050a6de594b5b55534bf5c3f5278493c94 /components/layout/display_list_builder.rs | |
parent | 49dc60cac1ef014621379bedf1fb41aeac34820e (diff) | |
parent | dfb5c52131738d15af9987aff02751fa212863f9 (diff) | |
download | servo-172aed535be3c34775824dac64ad2b91fc379ad5.tar.gz servo-172aed535be3c34775824dac64ad2b91fc379ad5.zip |
auto merge of #4757 : servo/servo/newnewnewcss, r=mbrubeck
(Still off by default. Enable with `RUST_LOG=style`.)
r? @mbrubeck
Diffstat (limited to 'components/layout/display_list_builder.rs')
-rw-r--r-- | components/layout/display_list_builder.rs | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/components/layout/display_list_builder.rs b/components/layout/display_list_builder.rs index 1c81e65459b..6ec6f4a317b 100644 --- a/components/layout/display_list_builder.rs +++ b/components/layout/display_list_builder.rs @@ -47,12 +47,13 @@ use std::default::Default; use std::iter::repeat; use std::num::Float; use style::values::specified::{AngleOrCorner, HorizontalDirection, VerticalDirection}; -use style::computed::{Image, LinearGradient, LengthOrPercentage}; +use style::values::computed::{Image, LinearGradient, LengthOrPercentage}; +use style::values::RGBA; use style::computed_values::filter::Filter; use style::computed_values::{background_attachment, background_repeat, border_style, overflow}; use style::computed_values::{position, visibility}; -use style::style_structs::Border; -use style::{ComputedValues, RGBA}; +use style::properties::style_structs::Border; +use style::properties::ComputedValues; use std::num::ToPrimitive; use std::sync::Arc; use std::sync::mpsc::channel; |