diff options
author | Anthony Ramine <n.oxyde@gmail.com> | 2016-02-16 00:15:05 +0100 |
---|---|---|
committer | Anthony Ramine <n.oxyde@gmail.com> | 2016-02-23 15:42:42 +0100 |
commit | a734b8fa214d763f69a0a4ddffc91a71c9483ad0 (patch) | |
tree | 8106b66a819e92c32f33a5bd6692ebc6c855f98f /components/script/dom/browsingcontext.rs | |
parent | ebae503a24db9859f2f96dc92968b195f97cdf54 (diff) | |
download | servo-a734b8fa214d763f69a0a4ddffc91a71c9483ad0.tar.gz servo-a734b8fa214d763f69a0a4ddffc91a71c9483ad0.zip |
Reorder js imports in browsingcontext
Diffstat (limited to 'components/script/dom/browsingcontext.rs')
-rw-r--r-- | components/script/dom/browsingcontext.rs | 17 |
1 files changed, 8 insertions, 9 deletions
diff --git a/components/script/dom/browsingcontext.rs b/components/script/dom/browsingcontext.rs index 603b2c27f80..2805d271636 100644 --- a/components/script/dom/browsingcontext.rs +++ b/components/script/dom/browsingcontext.rs @@ -13,15 +13,14 @@ use dom::document::Document; use dom::element::Element; use dom::window::Window; use js::JSCLASS_IS_GLOBAL; -use js::glue::{CreateWrapperProxyHandler, ProxyTraps, NewWindowProxy}; -use js::glue::{GetProxyPrivate, SetProxyExtra}; -use js::jsapi::{Handle, JS_ForwardSetPropertyTo, ObjectOpResult, RootedObject, RootedValue}; -use js::jsapi::{HandleId, HandleObject, MutableHandle, MutableHandleValue}; -use js::jsapi::{JSAutoCompartment, JSAutoRequest, JS_GetClass}; -use js::jsapi::{JSContext, JSErrNum, JSObject, JSPropertyDescriptor}; -use js::jsapi::{JS_AlreadyHasOwnPropertyById, JS_ForwardGetPropertyTo}; -use js::jsapi::{JS_DefinePropertyById6, JS_GetOwnPropertyDescriptorById}; -use js::jsval::{ObjectValue, UndefinedValue, PrivateValue}; +use js::glue::{CreateWrapperProxyHandler, GetProxyPrivate, NewWindowProxy}; +use js::glue::{ProxyTraps, SetProxyExtra}; +use js::jsapi::{Handle, HandleId, HandleObject, JSAutoCompartment, JSAutoRequest, JSContext}; +use js::jsapi::{JSErrNum, JSObject, JSPropertyDescriptor, JS_AlreadyHasOwnPropertyById}; +use js::jsapi::{JS_DefinePropertyById6, JS_ForwardGetPropertyTo, JS_ForwardSetPropertyTo}; +use js::jsapi::{JS_GetClass, JS_GetOwnPropertyDescriptorById, MutableHandle, MutableHandleValue}; +use js::jsapi::{ObjectOpResult, RootedObject, RootedValue}; +use js::jsval::{ObjectValue, PrivateValue, UndefinedValue}; #[dom_struct] pub struct BrowsingContext { |