diff options
Diffstat (limited to 'src/components/script/dom/htmlvideoelement.rs')
-rw-r--r-- | src/components/script/dom/htmlvideoelement.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/components/script/dom/htmlvideoelement.rs b/src/components/script/dom/htmlvideoelement.rs index 3587ab4931a..aba9c3c3436 100644 --- a/src/components/script/dom/htmlvideoelement.rs +++ b/src/components/script/dom/htmlvideoelement.rs @@ -4,7 +4,7 @@ use dom::bindings::codegen::BindingDeclarations::HTMLVideoElementBinding; use dom::bindings::codegen::InheritTypes::HTMLVideoElementDerived; -use dom::bindings::js::{JS, JSRef}; +use dom::bindings::js::{JS, JSRef, Unrooted}; use dom::bindings::error::ErrorResult; use dom::document::Document; use dom::element::HTMLVideoElementTypeId; @@ -34,7 +34,7 @@ impl HTMLVideoElement { } } - pub fn new(localName: DOMString, document: &JSRef<Document>) -> JS<HTMLVideoElement> { + pub fn new(localName: DOMString, document: &JSRef<Document>) -> Unrooted<HTMLVideoElement> { let element = HTMLVideoElement::new_inherited(localName, document.unrooted()); Node::reflect_node(~element, document, HTMLVideoElementBinding::Wrap) } |