diff options
author | Bobby Holley <bobbyholley@gmail.com> | 2017-05-02 16:22:10 -0700 |
---|---|---|
committer | Bobby Holley <bobbyholley@gmail.com> | 2017-05-02 17:35:45 -0700 |
commit | 7b0679848b177ead3a87171d0224e05ecadd8006 (patch) | |
tree | 69ecc07d8293ca15f04dd066da132cad31414161 /components/script/dom/document.rs | |
parent | d78ca4c4f9f1866204cbb420b284be1cbc137712 (diff) | |
download | servo-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.rs | 2 |
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; |