diff options
author | Simon Sapin <simon.sapin@exyr.org> | 2016-09-28 11:05:06 +0200 |
---|---|---|
committer | Simon Sapin <simon.sapin@exyr.org> | 2016-10-04 18:35:01 +0200 |
commit | fbde392c3df4bf681a53fe47eaaf9df2f9cc93a4 (patch) | |
tree | bc8d2b1804128f9fbcad79ae99609d145bd957b1 /components/script/dom/attr.rs | |
parent | c831369e3effa82aca268843ba61bd2d011bd643 (diff) | |
download | servo-fbde392c3df4bf681a53fe47eaaf9df2f9cc93a4.tar.gz servo-fbde392c3df4bf681a53fe47eaaf9df2f9cc93a4.zip |
Revert "Make DOMRefCell use style’s copy of RefCell"
This reverts commit ec723057b2360446790d436fe5e234d798fb4175.
Diffstat (limited to 'components/script/dom/attr.rs')
-rw-r--r-- | components/script/dom/attr.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/script/dom/attr.rs b/components/script/dom/attr.rs index 36de48a1f9b..d5a00e6c1fa 100644 --- a/components/script/dom/attr.rs +++ b/components/script/dom/attr.rs @@ -15,10 +15,10 @@ use dom::element::{AttributeMutation, Element}; use dom::virtualmethods::vtable_for; use dom::window::Window; use std::borrow::ToOwned; +use std::cell::Ref; use std::mem; use string_cache::{Atom, Namespace}; use style::attr::{AttrIdentifier, AttrValue}; -use style::refcell::Ref; // https://dom.spec.whatwg.org/#interface-attr #[dom_struct] |