aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/dom/htmltextareaelement.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/htmltextareaelement.rs
parent858ea2eb9afdee0767a4d35b7f858fde03dd6108 (diff)
downloadservo-684510bc94611ef0e9279d5fe8139a2f5a4c0157.tar.gz
servo-684510bc94611ef0e9279d5fe8139a2f5a4c0157.zip
Stop re-exporting AttrValue.
Diffstat (limited to 'components/script/dom/htmltextareaelement.rs')
-rw-r--r--components/script/dom/htmltextareaelement.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/components/script/dom/htmltextareaelement.rs b/components/script/dom/htmltextareaelement.rs
index 19d108d95cc..69fe9046dad 100644
--- a/components/script/dom/htmltextareaelement.rs
+++ b/components/script/dom/htmltextareaelement.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::cell::DOMRefCell;
use dom::bindings::codegen::Bindings::EventBinding::EventMethods;
use dom::bindings::codegen::Bindings::HTMLTextAreaElementBinding;
@@ -29,6 +29,7 @@ use script_traits::ScriptMsg as ConstellationMsg;
use std::cell::Cell;
use std::ops::Range;
use string_cache::Atom;
+use style::attr::AttrValue;
use style::element_state::*;
use textinput::{KeyReaction, Lines, TextInput, SelectionDirection};