diff options
Diffstat (limited to 'components/script/dom/htmlareaelement.rs')
-rw-r--r-- | components/script/dom/htmlareaelement.rs | 21 |
1 files changed, 11 insertions, 10 deletions
diff --git a/components/script/dom/htmlareaelement.rs b/components/script/dom/htmlareaelement.rs index 5a3a3e645b4..3f6306812b4 100644 --- a/components/script/dom/htmlareaelement.rs +++ b/components/script/dom/htmlareaelement.rs @@ -2,6 +2,17 @@ * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at https://mozilla.org/MPL/2.0/. */ +use std::default::Default; +use std::{f32, str}; + +use cssparser::{_cssparser_internal_to_lowercase, match_ignore_ascii_case}; +use dom_struct::dom_struct; +use euclid::default::Point2D; +use html5ever::{local_name, LocalName, Prefix}; +use js::rust::HandleObject; +use servo_atoms::Atom; +use style::attr::AttrValue; + use crate::dom::activation::Activatable; use crate::dom::bindings::codegen::Bindings::HTMLAreaElementBinding::HTMLAreaElementMethods; use crate::dom::bindings::inheritance::Castable; @@ -16,16 +27,6 @@ use crate::dom::htmlanchorelement::follow_hyperlink; use crate::dom::htmlelement::HTMLElement; use crate::dom::node::Node; use crate::dom::virtualmethods::VirtualMethods; -use cssparser::{_cssparser_internal_to_lowercase, match_ignore_ascii_case}; -use dom_struct::dom_struct; -use euclid::default::Point2D; -use html5ever::{local_name, LocalName, Prefix}; -use js::rust::HandleObject; -use servo_atoms::Atom; -use std::default::Default; -use std::f32; -use std::str; -use style::attr::AttrValue; #[derive(Debug, PartialEq)] pub enum Area { |