aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/dom/htmllegendelement.rs
diff options
context:
space:
mode:
authorArnaud Marant <arnaudmarant@gmail.com>2016-04-07 21:24:20 +0200
committerArnaud Marant <arnaudmarant@gmail.com>2016-04-07 21:24:20 +0200
commit4dedd46af7f04be4bc899b0473cb43d13faeff3b (patch)
tree69cad24f37028ed0975d9898ed24f061138f7bba /components/script/dom/htmllegendelement.rs
parent39ab006c8f71404d2fcd81f7715b7b9e47d5aead (diff)
downloadservo-4dedd46af7f04be4bc899b0473cb43d13faeff3b.tar.gz
servo-4dedd46af7f04be4bc899b0473cb43d13faeff3b.zip
Issue #10456 Remove unused import warnings in HTMLLegendElement
Diffstat (limited to 'components/script/dom/htmllegendelement.rs')
-rw-r--r--components/script/dom/htmllegendelement.rs3
1 files changed, 1 insertions, 2 deletions
diff --git a/components/script/dom/htmllegendelement.rs b/components/script/dom/htmllegendelement.rs
index 343f28f9c65..d0b3487113a 100644
--- a/components/script/dom/htmllegendelement.rs
+++ b/components/script/dom/htmllegendelement.rs
@@ -2,7 +2,6 @@
// 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::bindings::codegen::Bindings::ElementBinding::ElementMethods;
use dom::bindings::codegen::Bindings::HTMLLegendElementBinding;
use dom::bindings::codegen::Bindings::HTMLLegendElementBinding::HTMLLegendElementMethods;
use dom::bindings::codegen::Bindings::NodeBinding::NodeMethods;
@@ -13,7 +12,7 @@ use dom::element::Element;
use dom::htmlelement::HTMLElement;
use dom::htmlfieldsetelement::HTMLFieldSetElement;
use dom::htmlformelement::{HTMLFormElement, FormControl};
-use dom::node::{ChildrenMutation, Node, NodeDamage, UnbindContext};
+use dom::node::{Node, UnbindContext};
use dom::virtualmethods::VirtualMethods;
use string_cache::Atom;
use util::str::DOMString;