aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/dom/document.rs
diff options
context:
space:
mode:
authorbors-servo <metajack+bors@gmail.com>2014-11-14 15:48:35 -0700
committerbors-servo <metajack+bors@gmail.com>2014-11-14 15:48:35 -0700
commit7d3b76c60d2d5bd61cf6b48d09d769df77af293d (patch)
tree467ce2ba3e833acc429e80510246eb2cb6e42f51 /components/script/dom/document.rs
parente3ee984f1747b27e66b80c8418af7ce51739880d (diff)
parent86d609abaf7bf980a55916b90add2795cc11bf17 (diff)
downloadservo-7d3b76c60d2d5bd61cf6b48d09d769df77af293d.tar.gz
servo-7d3b76c60d2d5bd61cf6b48d09d769df77af293d.zip
auto merge of #3979 : Ms2ger/servo/as_unsafe_cell, r=jdm
Diffstat (limited to 'components/script/dom/document.rs')
-rw-r--r--components/script/dom/document.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/components/script/dom/document.rs b/components/script/dom/document.rs
index b5a39073dad..2b8632fd7c1 100644
--- a/components/script/dom/document.rs
+++ b/components/script/dom/document.rs
@@ -3,7 +3,7 @@
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
use dom::attr::AttrHelpers;
-use dom::bindings::cell::{DOMRefCell, Ref};
+use dom::bindings::cell::DOMRefCell;
use dom::bindings::codegen::Bindings::DocumentBinding;
use dom::bindings::codegen::Bindings::DocumentBinding::{DocumentMethods, DocumentReadyState};
use dom::bindings::codegen::Bindings::DocumentBinding::DocumentReadyStateValues;
@@ -65,7 +65,7 @@ use url::Url;
use std::collections::HashMap;
use std::collections::hash_map::{Vacant, Occupied};
use std::ascii::AsciiExt;
-use std::cell::Cell;
+use std::cell::{Cell, Ref};
use std::default::Default;
use time;