aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/dom/document.rs
diff options
context:
space:
mode:
authorBobby Holley <bobbyholley@gmail.com>2017-05-02 16:22:10 -0700
committerBobby Holley <bobbyholley@gmail.com>2017-05-02 17:35:45 -0700
commit7b0679848b177ead3a87171d0224e05ecadd8006 (patch)
tree69ecc07d8293ca15f04dd066da132cad31414161 /components/script/dom/document.rs
parentd78ca4c4f9f1866204cbb420b284be1cbc137712 (diff)
downloadservo-7b0679848b177ead3a87171d0224e05ecadd8006.tar.gz
servo-7b0679848b177ead3a87171d0224e05ecadd8006.zip
Fix up script and layout.
Diffstat (limited to 'components/script/dom/document.rs')
-rw-r--r--components/script/dom/document.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/components/script/dom/document.rs b/components/script/dom/document.rs
index 06b8f7596cf..024c201a85c 100644
--- a/components/script/dom/document.rs
+++ b/components/script/dom/document.rs
@@ -128,7 +128,6 @@ use std::default::Default;
use std::iter::once;
use std::mem;
use std::rc::Rc;
-use std::sync::Arc;
use std::time::{Duration, Instant};
use style::attr::AttrValue;
use style::context::{QuirksMode, ReflowGoal};
@@ -136,6 +135,7 @@ use style::restyle_hints::{RestyleHint, RESTYLE_SELF, RESTYLE_STYLE_ATTRIBUTE};
use style::selector_parser::{RestyleDamage, Snapshot};
use style::shared_lock::SharedRwLock as StyleSharedRwLock;
use style::str::{HTML_SPACE_CHARACTERS, split_html_space_chars, str_join};
+use style::stylearc::Arc;
use style::stylesheets::Stylesheet;
use task_source::TaskSource;
use time;