aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/dom/document.rs
diff options
context:
space:
mode:
authorKeegan McAllister <kmcallister@mozilla.com>2014-09-29 17:59:47 -0700
committerKeegan McAllister <kmcallister@mozilla.com>2014-09-29 18:39:36 -0700
commit6429750b339ca45651ac3a45df380f1badd3917c (patch)
treefa7e5a4ff39828238ebecc1028fc6ccd682dfcd7 /components/script/dom/document.rs
parent4be0a07585b019d45dd83849818854566c5e118b (diff)
downloadservo-6429750b339ca45651ac3a45df380f1badd3917c.tar.gz
servo-6429750b339ca45651ac3a45df380f1badd3917c.zip
Eliminate servo_util::atom
We only needed this for Encodable, and now we use JSTraceable instead.
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 63f205206fa..a66ec400e34 100644
--- a/components/script/dom/document.rs
+++ b/components/script/dom/document.rs
@@ -55,10 +55,10 @@ use dom::window::{Window, WindowHelpers};
use html::hubbub_html_parser::build_element_from_tag;
use hubbub::hubbub::{QuirksMode, NoQuirks, LimitedQuirks, FullQuirks};
use layout_interface::{DocumentDamageLevel, ContentChangedDocumentDamage};
-use servo_util::atom::Atom;
use servo_util::namespace;
use servo_util::namespace::{Namespace, Null};
use servo_util::str::{DOMString, split_html_space_chars};
+use string_cache::Atom;
use std::collections::hashmap::HashMap;
use std::ascii::StrAsciiExt;