diff options
author | Kunal Mohan <kunalmohan99@gmail.com> | 2020-01-07 13:27:19 +0530 |
---|---|---|
committer | Kunal Mohan <kunalmohan99@gmail.com> | 2020-01-08 09:44:41 +0530 |
commit | 02c1612cb0dd5a74deb33c9c31d89ded2b50d0a9 (patch) | |
tree | b80ca8ca874d2e4b30b579795292c168daccbb39 /components/script/body.rs | |
parent | bd636b0e6c4f124281ce9206eedd7f60ba4ed475 (diff) | |
download | servo-02c1612cb0dd5a74deb33c9c31d89ded2b50d0a9.tar.gz servo-02c1612cb0dd5a74deb33c9c31d89ded2b50d0a9.zip |
Add accountable-refcell as optional build time feature
Diffstat (limited to 'components/script/body.rs')
-rw-r--r-- | components/script/body.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/script/body.rs b/components/script/body.rs index e38dd1b0a98..06b864fa4e9 100644 --- a/components/script/body.rs +++ b/components/script/body.rs @@ -3,6 +3,7 @@ * file, You can obtain one at https://mozilla.org/MPL/2.0/. */ use crate::compartments::{AlreadyInCompartment, InCompartment}; +use crate::dom::bindings::cell::Ref; use crate::dom::bindings::codegen::Bindings::FormDataBinding::FormDataMethods; use crate::dom::bindings::error::{Error, Fallible}; use crate::dom::bindings::reflector::DomObject; @@ -25,7 +26,6 @@ use js::rust::wrappers::JS_ParseJSON; use js::typedarray::{ArrayBuffer, CreateWith}; use mime::{self, Mime}; use script_traits::serializable::BlobImpl; -use std::cell::Ref; use std::ptr; use std::rc::Rc; use std::str; |