diff options
Diffstat (limited to 'components/script/dom/htmlelement.rs')
-rw-r--r-- | components/script/dom/htmlelement.rs | 60 |
1 files changed, 30 insertions, 30 deletions
diff --git a/components/script/dom/htmlelement.rs b/components/script/dom/htmlelement.rs index 9279f8fdbe1..5b29b8957f3 100644 --- a/components/script/dom/htmlelement.rs +++ b/components/script/dom/htmlelement.rs @@ -2,36 +2,36 @@ * 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::activation::{ActivationSource, synthetic_click_activation}; -use dom::attr::Attr; -use dom::bindings::codegen::Bindings::ElementBinding::ElementMethods; -use dom::bindings::codegen::Bindings::EventHandlerBinding::EventHandlerNonNull; -use dom::bindings::codegen::Bindings::HTMLElementBinding; -use dom::bindings::codegen::Bindings::HTMLElementBinding::HTMLElementMethods; -use dom::bindings::codegen::Bindings::NodeBinding::NodeBinding::NodeMethods; -use dom::bindings::codegen::Bindings::WindowBinding::WindowMethods; -use dom::bindings::error::{Error, ErrorResult}; -use dom::bindings::inheritance::{ElementTypeId, HTMLElementTypeId, NodeTypeId}; -use dom::bindings::inheritance::Castable; -use dom::bindings::root::{Dom, DomRoot, MutNullableDom, RootedReference}; -use dom::bindings::str::DOMString; -use dom::cssstyledeclaration::{CSSModificationAccess, CSSStyleDeclaration, CSSStyleOwner}; -use dom::document::{Document, FocusType}; -use dom::documentfragment::DocumentFragment; -use dom::domstringmap::DOMStringMap; -use dom::element::{AttributeMutation, Element}; -use dom::eventtarget::EventTarget; -use dom::htmlbodyelement::HTMLBodyElement; -use dom::htmlbrelement::HTMLBRElement; -use dom::htmlframesetelement::HTMLFrameSetElement; -use dom::htmlhtmlelement::HTMLHtmlElement; -use dom::htmlinputelement::{HTMLInputElement, InputType}; -use dom::htmllabelelement::HTMLLabelElement; -use dom::node::{Node, NodeFlags}; -use dom::node::{document_from_node, window_from_node}; -use dom::nodelist::NodeList; -use dom::text::Text; -use dom::virtualmethods::VirtualMethods; +use crate::dom::activation::{ActivationSource, synthetic_click_activation}; +use crate::dom::attr::Attr; +use crate::dom::bindings::codegen::Bindings::ElementBinding::ElementMethods; +use crate::dom::bindings::codegen::Bindings::EventHandlerBinding::EventHandlerNonNull; +use crate::dom::bindings::codegen::Bindings::HTMLElementBinding; +use crate::dom::bindings::codegen::Bindings::HTMLElementBinding::HTMLElementMethods; +use crate::dom::bindings::codegen::Bindings::NodeBinding::NodeBinding::NodeMethods; +use crate::dom::bindings::codegen::Bindings::WindowBinding::WindowMethods; +use crate::dom::bindings::error::{Error, ErrorResult}; +use crate::dom::bindings::inheritance::{ElementTypeId, HTMLElementTypeId, NodeTypeId}; +use crate::dom::bindings::inheritance::Castable; +use crate::dom::bindings::root::{Dom, DomRoot, MutNullableDom, RootedReference}; +use crate::dom::bindings::str::DOMString; +use crate::dom::cssstyledeclaration::{CSSModificationAccess, CSSStyleDeclaration, CSSStyleOwner}; +use crate::dom::document::{Document, FocusType}; +use crate::dom::documentfragment::DocumentFragment; +use crate::dom::domstringmap::DOMStringMap; +use crate::dom::element::{AttributeMutation, Element}; +use crate::dom::eventtarget::EventTarget; +use crate::dom::htmlbodyelement::HTMLBodyElement; +use crate::dom::htmlbrelement::HTMLBRElement; +use crate::dom::htmlframesetelement::HTMLFrameSetElement; +use crate::dom::htmlhtmlelement::HTMLHtmlElement; +use crate::dom::htmlinputelement::{HTMLInputElement, InputType}; +use crate::dom::htmllabelelement::HTMLLabelElement; +use crate::dom::node::{Node, NodeFlags}; +use crate::dom::node::{document_from_node, window_from_node}; +use crate::dom::nodelist::NodeList; +use crate::dom::text::Text; +use crate::dom::virtualmethods::VirtualMethods; use dom_struct::dom_struct; use html5ever::{LocalName, Prefix}; use script_layout_interface::message::QueryMsg; |