aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/dom/htmltablecellelement.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/htmltablecellelement.rs
parent858ea2eb9afdee0767a4d35b7f858fde03dd6108 (diff)
downloadservo-684510bc94611ef0e9279d5fe8139a2f5a4c0157.tar.gz
servo-684510bc94611ef0e9279d5fe8139a2f5a4c0157.zip
Stop re-exporting AttrValue.
Diffstat (limited to 'components/script/dom/htmltablecellelement.rs')
-rw-r--r--components/script/dom/htmltablecellelement.rs3
1 files changed, 1 insertions, 2 deletions
diff --git a/components/script/dom/htmltablecellelement.rs b/components/script/dom/htmltablecellelement.rs
index ae54b915342..eeeafd8f977 100644
--- a/components/script/dom/htmltablecellelement.rs
+++ b/components/script/dom/htmltablecellelement.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::HTMLTableCellElementBinding::HTMLTableCellElementMethods;
use dom::bindings::codegen::Bindings::NodeBinding::NodeMethods;
use dom::bindings::inheritance::Castable;
@@ -16,7 +15,7 @@ use dom::htmltablerowelement::HTMLTableRowElement;
use dom::node::Node;
use dom::virtualmethods::VirtualMethods;
use string_cache::Atom;
-use style::attr::LengthOrPercentageOrAuto;
+use style::attr::{AttrValue, LengthOrPercentageOrAuto};
const DEFAULT_COLSPAN: u32 = 1;