diff options
author | Cameron Zwarich <zwarich@mozilla.com> | 2014-09-19 19:28:32 -0700 |
---|---|---|
committer | Cameron Zwarich <zwarich@mozilla.com> | 2014-09-19 19:28:32 -0700 |
commit | e9ad87e27eb30cfacd66b575e104ee2784f95591 (patch) | |
tree | b70dbba4ac5f1dba5b59f7d9e13b812c91e2d198 /components/script/dom/htmlparamelement.rs | |
parent | 877de7f694dddd02fcc855a571f99e7c46f7501d (diff) | |
parent | 4fa872511117eafd934cad70c7d3b8c583fb960e (diff) | |
download | servo-e9ad87e27eb30cfacd66b575e104ee2784f95591.tar.gz servo-e9ad87e27eb30cfacd66b575e104ee2784f95591.zip |
Merge pull request #3422 from zwarich/jsref
First steps of &JSRef -> JSRef conversion
Diffstat (limited to 'components/script/dom/htmlparamelement.rs')
-rw-r--r-- | components/script/dom/htmlparamelement.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/components/script/dom/htmlparamelement.rs b/components/script/dom/htmlparamelement.rs index fc44938f99d..fe2eb1a1dc0 100644 --- a/components/script/dom/htmlparamelement.rs +++ b/components/script/dom/htmlparamelement.rs @@ -26,14 +26,14 @@ impl HTMLParamElementDerived for EventTarget { } impl HTMLParamElement { - pub fn new_inherited(localName: DOMString, document: &JSRef<Document>) -> HTMLParamElement { + pub fn new_inherited(localName: DOMString, document: JSRef<Document>) -> HTMLParamElement { HTMLParamElement { htmlelement: HTMLElement::new_inherited(HTMLParamElementTypeId, localName, document) } } #[allow(unrooted_must_root)] - pub fn new(localName: DOMString, document: &JSRef<Document>) -> Temporary<HTMLParamElement> { + pub fn new(localName: DOMString, document: JSRef<Document>) -> Temporary<HTMLParamElement> { let element = HTMLParamElement::new_inherited(localName, document); Node::reflect_node(box element, document, HTMLParamElementBinding::Wrap) } |