diff options
author | Ms2ger <Ms2ger@gmail.com> | 2016-06-07 13:44:54 +0200 |
---|---|---|
committer | Ms2ger <Ms2ger@gmail.com> | 2016-06-07 13:46:49 +0200 |
commit | 6a1722e18d926aa0a177e4b9a672a90bf4c541f5 (patch) | |
tree | c91ff871f0dca66c017550697fb6738b9b1c30d3 /components/layout/construct.rs | |
parent | 684510bc94611ef0e9279d5fe8139a2f5a4c0157 (diff) | |
download | servo-6a1722e18d926aa0a177e4b9a672a90bf4c541f5.tar.gz servo-6a1722e18d926aa0a177e4b9a672a90bf4c541f5.zip |
Make layout only depend on script::layout_interface.
Diffstat (limited to 'components/layout/construct.rs')
-rw-r--r-- | components/layout/construct.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/components/layout/construct.rs b/components/layout/construct.rs index 8d37b6aa6ba..3dfcfdf2689 100644 --- a/components/layout/construct.rs +++ b/components/layout/construct.rs @@ -34,9 +34,9 @@ use inline::{InlineFragmentNodeInfo, LAST_FRAGMENT_OF_ELEMENT}; use list_item::{ListItemFlow, ListStyleTypeContent}; use multicol::{MulticolFlow, MulticolColumnFlow}; use parallel; -use script::dom::bindings::inheritance::{CharacterDataTypeId, ElementTypeId}; -use script::dom::bindings::inheritance::{HTMLElementTypeId, NodeTypeId}; -use script::dom::htmlobjectelement::is_image_data; +use script::layout_interface::is_image_data; +use script::layout_interface::{CharacterDataTypeId, ElementTypeId}; +use script::layout_interface::{HTMLElementTypeId, NodeTypeId}; use std::borrow::ToOwned; use std::collections::LinkedList; use std::marker::PhantomData; |