diff options
author | Manish Goregaokar <manishsmail@gmail.com> | 2014-09-17 01:00:59 +0530 |
---|---|---|
committer | Manish Goregaokar <manishsmail@gmail.com> | 2014-09-17 01:02:44 +0530 |
commit | f5087e149004e0080a61a2a31d76a5c52ee357e1 (patch) | |
tree | 6e9507a3e4e8ce3c84ab603673d3eead9ae0d1b0 /components/script/dom/htmlimageelement.rs | |
parent | 30014c3919f5ad30d491074dafbfdaad0fb0de92 (diff) | |
download | servo-f5087e149004e0080a61a2a31d76a5c52ee357e1.tar.gz servo-f5087e149004e0080a61a2a31d76a5c52ee357e1.zip |
Use #[must_root] for HTMLElements
Diffstat (limited to 'components/script/dom/htmlimageelement.rs')
-rw-r--r-- | components/script/dom/htmlimageelement.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/components/script/dom/htmlimageelement.rs b/components/script/dom/htmlimageelement.rs index 33d7b7dfd31..903e52bb309 100644 --- a/components/script/dom/htmlimageelement.rs +++ b/components/script/dom/htmlimageelement.rs @@ -26,6 +26,7 @@ use url::{Url, UrlParser}; use std::cell::RefCell; #[deriving(Encodable)] +#[must_root] pub struct HTMLImageElement { pub htmlelement: HTMLElement, image: Untraceable<RefCell<Option<Url>>>, @@ -78,6 +79,7 @@ impl HTMLImageElement { } } + #[allow(unrooted_must_root)] pub fn new(localName: DOMString, document: &JSRef<Document>) -> Temporary<HTMLImageElement> { let element = HTMLImageElement::new_inherited(localName, document); Node::reflect_node(box element, document, HTMLImageElementBinding::Wrap) |