aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/dom/document.rs
diff options
context:
space:
mode:
authorbors-servo <lbergstrom+bors@mozilla.com>2017-05-02 20:01:10 -0500
committerGitHub <noreply@github.com>2017-05-02 20:01:10 -0500
commit7b1006936a27232fb77fef5893cc141e66bb12b7 (patch)
tree750a15b93482d99f1aadd7afe507dd910516a6d1 /components/script/dom/document.rs
parent536d63c67028c7368dff780945626283d2c48f1c (diff)
parentfd1c814e7812e68e1207165c9387ddcfd8a6379b (diff)
downloadservo-7b1006936a27232fb77fef5893cc141e66bb12b7.tar.gz
servo-7b1006936a27232fb77fef5893cc141e66bb12b7.zip
Auto merge of #16702 - bholley:custom_arc, r=emilio
Use a custom arc in the style system See https://bugzilla.mozilla.org/show_bug.cgi?id=1360889 <!-- Reviewable:start --> --- This change is [<img src="https://reviewable.io/review_button.svg" height="34" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/16702) <!-- Reviewable:end -->
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;