aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/dom/virtualmethods.rs
diff options
context:
space:
mode:
authorMs2ger <Ms2ger@gmail.com>2016-06-07 13:15:23 +0200
committerMs2ger <Ms2ger@gmail.com>2016-06-07 13:15:23 +0200
commit684510bc94611ef0e9279d5fe8139a2f5a4c0157 (patch)
treef9b717d53349a14fc29adba679158e975bb46d26 /components/script/dom/virtualmethods.rs
parent858ea2eb9afdee0767a4d35b7f858fde03dd6108 (diff)
downloadservo-684510bc94611ef0e9279d5fe8139a2f5a4c0157.tar.gz
servo-684510bc94611ef0e9279d5fe8139a2f5a4c0157.zip
Stop re-exporting AttrValue.
Diffstat (limited to 'components/script/dom/virtualmethods.rs')
-rw-r--r--components/script/dom/virtualmethods.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/components/script/dom/virtualmethods.rs b/components/script/dom/virtualmethods.rs
index d8259307274..b42e8b676c3 100644
--- a/components/script/dom/virtualmethods.rs
+++ b/components/script/dom/virtualmethods.rs
@@ -2,7 +2,7 @@
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
-use dom::attr::{Attr, AttrValue};
+use dom::attr::Attr;
use dom::bindings::inheritance::Castable;
use dom::bindings::inheritance::ElementTypeId;
use dom::bindings::inheritance::HTMLElementTypeId;
@@ -47,7 +47,7 @@ use dom::htmltextareaelement::HTMLTextAreaElement;
use dom::htmltitleelement::HTMLTitleElement;
use dom::node::{ChildrenMutation, CloneChildrenFlag, Node, UnbindContext};
use string_cache::Atom;
-
+use style::attr::AttrValue;
/// Trait to allow DOM nodes to opt-in to overriding (or adding to) common
/// behaviours. Replicates the effect of C++ virtual methods.