Clean up importing.

This commit is contained in:
Tetsuharu OHZEKI 2013-08-11 05:41:24 +09:00
parent b44d4346df
commit 35e87d0a99
2 changed files with 21 additions and 21 deletions

View file

@ -6,17 +6,17 @@ use dom::bindings::element;
use dom::bindings::text; use dom::bindings::text;
use dom::bindings::utils; use dom::bindings::utils;
use dom::bindings::utils::{CacheableWrapper, WrapperCache, DerivedWrapper}; use dom::bindings::utils::{CacheableWrapper, WrapperCache, DerivedWrapper};
use dom::element::{HTMLElementTypeId}; use dom::element::{HTMLElementTypeId,
use dom::element::{HTMLHeadElementTypeId, HTMLHtmlElementTypeId, HTMLAnchorElementTypeId, HTMLCanvasElementTypeId}; HTMLAnchorElementTypeId, HTMLBodyElementTypeId, HTMLBRElementTypeId,
use dom::element::{HTMLDivElementTypeId, HTMLImageElementTypeId, HTMLSpanElementTypeId}; HTMLCanvasElementTypeId,
use dom::element::{HTMLBodyElementTypeId, HTMLHRElementTypeId, HTMLIframeElementTypeId}; HTMLDivElementTypeId, HTMLHeadElementTypeId, HTMLHRElementTypeId,
use dom::element::{HTMLBRElementTypeId, HTMLTitleElementTypeId}; HTMLHtmlElementTypeId, HTMLIframeElementTypeId, HTMLImageElementTypeId,
use dom::element::{HTMLParagraphElementTypeId, HTMLScriptElementTypeId, HTMLMetaElementTypeId}; HTMLMetaElementTypeId, HTMLOListElementTypeId,
use dom::element::{HTMLOListElementTypeId, HTMLStyleElementTypeId, HTMLTableElementTypeId}; HTMLParagraphElementTypeId, HTMLScriptElementTypeId,
use dom::element::{HTMLTableRowElementTypeId, HTMLTableSectionElementTypeId}; HTMLSpanElementTypeId, HTMLStyleElementTypeId, HTMLTextAreaElementTypeId,
use dom::element::{HTMLTextAreaElementTypeId, HTMLUListElementTypeId}; HTMLTableElementTypeId, HTMLTableRowElementTypeId, HTMLTableSectionElementTypeId,
use dom::element::{HTMLHeadElement, HTMLHtmlElement, HTMLDivElement, HTMLSpanElement}; HTMLTitleElementTypeId, HTMLUListElementTypeId};
use dom::element::{HTMLParagraphElement}; use dom::element::{HTMLHeadElement,HTMLHtmlElement, HTMLDivElement, HTMLParagraphElement, HTMLSpanElement};
use dom::htmlelement::HTMLElement; use dom::htmlelement::HTMLElement;
use dom::htmlanchorelement::HTMLAnchorElement; use dom::htmlanchorelement::HTMLAnchorElement;
use dom::htmlbodyelement::HTMLBodyElement; use dom::htmlbodyelement::HTMLBodyElement;

View file

@ -4,16 +4,16 @@
//! Element nodes. //! Element nodes.
use dom::bindings::codegen::{HTMLHeadElementBinding, HTMLHtmlElementBinding}; use dom::bindings::codegen::{HTMLAnchorElementBinding, HTMLBodyElementBinding, HTMLBRElementBinding,
use dom::bindings::codegen::{HTMLAnchorElementBinding, HTMLBRElementBinding}; HTMLCanvasElementBinding, HTMLDivElementBinding,
use dom::bindings::codegen::{HTMLBodyElementBinding, HTMLCanvasElementBinding, HTMLDivElementBinding, HTMLSpanElementBinding}; HTMLHeadElementBinding, HTMLHRElementBinding,
use dom::bindings::codegen::{HTMLHRElementBinding, HTMLIFrameElementBinding}; HTMLHtmlElementBinding, HTMLIFrameElementBinding,
use dom::bindings::codegen::{HTMLParagraphElementBinding, HTMLScriptElementBinding}; HTMLImageElementBinding, HTMLMetaElementBinding,
use dom::bindings::codegen::{HTMLImageElementBinding, HTMLOListElementBinding}; HTMLOListElementBinding, HTMLParagraphElementBinding,
use dom::bindings::codegen::{HTMLMetaElementBinding, HTMLStyleElementBinding}; HTMLScriptElementBinding, HTMLSpanElementBinding, HTMLStyleElementBinding,
use dom::bindings::codegen::{HTMLTableElementBinding, HTMLTableRowElementBinding}; HTMLTableElementBinding, HTMLTableRowElementBinding,
use dom::bindings::codegen::{HTMLTableSectionElementBinding, HTMLTextAreaElementBinding}; HTMLTableSectionElementBinding, HTMLTextAreaElementBinding,
use dom::bindings::codegen::{HTMLTitleElementBinding, HTMLUListElementBinding}; HTMLTitleElementBinding, HTMLUListElementBinding};
use dom::bindings::utils::{null_string, str}; use dom::bindings::utils::{null_string, str};
use dom::bindings::utils::{BindingObject, CacheableWrapper, DOMString, ErrorResult, WrapperCache}; use dom::bindings::utils::{BindingObject, CacheableWrapper, DOMString, ErrorResult, WrapperCache};
use dom::clientrect::ClientRect; use dom::clientrect::ClientRect;