diff options
author | Ms2ger <Ms2ger@gmail.com> | 2016-06-07 13:15:23 +0200 |
---|---|---|
committer | Ms2ger <Ms2ger@gmail.com> | 2016-06-07 13:15:23 +0200 |
commit | 684510bc94611ef0e9279d5fe8139a2f5a4c0157 (patch) | |
tree | f9b717d53349a14fc29adba679158e975bb46d26 /components/script/dom/htmlhrelement.rs | |
parent | 858ea2eb9afdee0767a4d35b7f858fde03dd6108 (diff) | |
download | servo-684510bc94611ef0e9279d5fe8139a2f5a4c0157.tar.gz servo-684510bc94611ef0e9279d5fe8139a2f5a4c0157.zip |
Stop re-exporting AttrValue.
Diffstat (limited to 'components/script/dom/htmlhrelement.rs')
-rw-r--r-- | components/script/dom/htmlhrelement.rs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/components/script/dom/htmlhrelement.rs b/components/script/dom/htmlhrelement.rs index 1041319f907..a3127449fcc 100644 --- a/components/script/dom/htmlhrelement.rs +++ b/components/script/dom/htmlhrelement.rs @@ -3,7 +3,6 @@ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ use cssparser::RGBA; -use dom::attr::AttrValue; use dom::bindings::codegen::Bindings::HTMLHRElementBinding::{self, HTMLHRElementMethods}; use dom::bindings::inheritance::Castable; use dom::bindings::js::{LayoutJS, Root}; @@ -14,7 +13,7 @@ use dom::htmlelement::HTMLElement; use dom::node::Node; use dom::virtualmethods::VirtualMethods; use string_cache::Atom; -use style::attr::LengthOrPercentageOrAuto; +use style::attr::{AttrValue, LengthOrPercentageOrAuto}; #[dom_struct] pub struct HTMLHRElement { |