diff options
Diffstat (limited to 'components/layout/wrapper.rs')
-rw-r--r-- | components/layout/wrapper.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/components/layout/wrapper.rs b/components/layout/wrapper.rs index 4f5e0e46eea..4f774041979 100644 --- a/components/layout/wrapper.rs +++ b/components/layout/wrapper.rs @@ -37,7 +37,6 @@ use util::{LayoutDataAccess, LayoutDataFlags, LayoutDataWrapper, OpaqueNodeMetho use util::{PrivateLayoutData}; use gfx::display_list::OpaqueNode; -use script::dom::bindings::cell::{Ref, RefMut}; use script::dom::bindings::codegen::InheritTypes::{ElementCast, HTMLIFrameElementCast}; use script::dom::bindings::codegen::InheritTypes::{HTMLImageElementCast, HTMLInputElementCast}; use script::dom::bindings::codegen::InheritTypes::{TextCast}; @@ -62,6 +61,8 @@ use style::{PropertyDeclarationBlock, SpecificNamespace, TElement, TElementAttri use url::Url; use string_cache::{Atom, Namespace}; +use std::cell::{Ref, RefMut}; + /// Allows some convenience methods on generic layout nodes. pub trait TLayoutNode { /// Creates a new layout node with the same lifetime as this layout node. |