diff options
author | Bobby Holley <bobbyholley@gmail.com> | 2017-01-03 14:34:10 -0800 |
---|---|---|
committer | Bobby Holley <bobbyholley@gmail.com> | 2017-01-03 18:14:27 -0800 |
commit | b9d99390ad4e3f0fc0efa642fa260ca2ed1f7303 (patch) | |
tree | 3055837c0c560bcfabd1ff55bec44c0071fe8f49 /components/script/layout_wrapper.rs | |
parent | 57b2c2609eb05ab06291137904703565a25a1cca (diff) | |
download | servo-b9d99390ad4e3f0fc0efa642fa260ca2ed1f7303.tar.gz servo-b9d99390ad4e3f0fc0efa642fa260ca2ed1f7303.zip |
Switch to crates.io for atomic_refcell.
Diffstat (limited to 'components/script/layout_wrapper.rs')
-rw-r--r-- | components/script/layout_wrapper.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/script/layout_wrapper.rs b/components/script/layout_wrapper.rs index 3e245ccdd35..25150d60dfe 100644 --- a/components/script/layout_wrapper.rs +++ b/components/script/layout_wrapper.rs @@ -30,6 +30,7 @@ #![allow(unsafe_code)] +use atomic_refcell::AtomicRefCell; use dom::bindings::inheritance::{CharacterDataTypeId, ElementTypeId}; use dom::bindings::inheritance::{HTMLElementTypeId, NodeTypeId}; use dom::bindings::js::LayoutJS; @@ -58,7 +59,6 @@ use std::marker::PhantomData; use std::mem::transmute; use std::sync::Arc; use std::sync::atomic::Ordering; -use style::atomic_refcell::AtomicRefCell; use style::attr::AttrValue; use style::computed_values::display; use style::context::{QuirksMode, SharedStyleContext}; |