diff options
author | bors-servo <release+servo@mozilla.com> | 2014-05-31 13:16:12 -0400 |
---|---|---|
committer | bors-servo <release+servo@mozilla.com> | 2014-05-31 13:16:12 -0400 |
commit | 362af39b83b5eea56523bed8cc6e67c383e70a3d (patch) | |
tree | fe0a38b2e551e671da6e7341bd2495b25139f500 /src/components/script/dom/htmlbodyelement.rs | |
parent | facc15f5fdd1db654090146e0901f7f12c7c0fcd (diff) | |
parent | 33e64c95d3383190c5748fd8c746a0d0b7074dd6 (diff) | |
download | servo-362af39b83b5eea56523bed8cc6e67c383e70a3d.tar.gz servo-362af39b83b5eea56523bed8cc6e67c383e70a3d.zip |
auto merge of #2533 : Ms2ger/servo/callback-bindingdeclarations, r=jdm
This commit also includes improvements to the 'use' order in some of the
touched files.
Diffstat (limited to 'src/components/script/dom/htmlbodyelement.rs')
-rw-r--r-- | src/components/script/dom/htmlbodyelement.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/components/script/dom/htmlbodyelement.rs b/src/components/script/dom/htmlbodyelement.rs index 6ba82e252f0..9f94f9d134c 100644 --- a/src/components/script/dom/htmlbodyelement.rs +++ b/src/components/script/dom/htmlbodyelement.rs @@ -2,10 +2,10 @@ * 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::BindingDeclarations::EventHandlerBinding::EventHandlerNonNull; use dom::bindings::codegen::BindingDeclarations::HTMLBodyElementBinding; -use dom::bindings::codegen::EventHandlerBinding::EventHandlerNonNull; -use dom::bindings::codegen::InheritTypes::{HTMLBodyElementDerived, HTMLElementCast}; use dom::bindings::codegen::InheritTypes::EventTargetCast; +use dom::bindings::codegen::InheritTypes::{HTMLBodyElementDerived, HTMLElementCast}; use dom::bindings::error::ErrorResult; use dom::bindings::js::{JSRef, Temporary}; use dom::bindings::utils::Reflectable; |