aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/dom/bindings/trace.rs
diff options
context:
space:
mode:
authorBobby Holley <bobbyholley@gmail.com>2015-11-03 12:16:53 -0800
committerBobby Holley <bobbyholley@gmail.com>2015-11-09 21:40:22 -0800
commitc9704992a9f378a682835fe86def542b9086ea1c (patch)
treefa144c385130fe666305cf8eade54500dfee18f7 /components/script/dom/bindings/trace.rs
parent488c1291d483b0d5e0308f9499202577d3470482 (diff)
downloadservo-c9704992a9f378a682835fe86def542b9086ea1c.tar.gz
servo-c9704992a9f378a682835fe86def542b9086ea1c.zip
Factor the name-related fields of Attr into a struct and move it to style.
Diffstat (limited to 'components/script/dom/bindings/trace.rs')
-rw-r--r--components/script/dom/bindings/trace.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/components/script/dom/bindings/trace.rs b/components/script/dom/bindings/trace.rs
index a86391e0178..d3259f56453 100644
--- a/components/script/dom/bindings/trace.rs
+++ b/components/script/dom/bindings/trace.rs
@@ -82,7 +82,7 @@ use std::sync::Arc;
use std::sync::atomic::AtomicBool;
use std::sync::mpsc::{Receiver, Sender};
use string_cache::{Atom, Namespace, QualName};
-use style::attr::AttrValue;
+use style::attr::{AttrIdentifier, AttrValue};
use style::properties::PropertyDeclarationBlock;
use style::values::specified::Length;
use url::Url;
@@ -290,6 +290,7 @@ no_jsmanaged_fields!(Length);
no_jsmanaged_fields!(ElementState);
no_jsmanaged_fields!(DOMString);
no_jsmanaged_fields!(Mime);
+no_jsmanaged_fields!(AttrIdentifier);
no_jsmanaged_fields!(AttrValue);
impl JSTraceable for Box<ScriptChan + Send> {