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/htmlheadelement.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/htmlheadelement.rs')
-rw-r--r-- | components/script/dom/htmlheadelement.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/components/script/dom/htmlheadelement.rs b/components/script/dom/htmlheadelement.rs index 5c2e619935c..01805e324c4 100644 --- a/components/script/dom/htmlheadelement.rs +++ b/components/script/dom/htmlheadelement.rs @@ -26,14 +26,14 @@ impl HTMLHeadElementDerived for EventTarget { } impl HTMLHeadElement { - pub fn new_inherited(localName: DOMString, document: &JSRef<Document>) -> HTMLHeadElement { + pub fn new_inherited(localName: DOMString, document: JSRef<Document>) -> HTMLHeadElement { HTMLHeadElement { htmlelement: HTMLElement::new_inherited(HTMLHeadElementTypeId, localName, document) } } #[allow(unrooted_must_root)] - pub fn new(localName: DOMString, document: &JSRef<Document>) -> Temporary<HTMLHeadElement> { + pub fn new(localName: DOMString, document: JSRef<Document>) -> Temporary<HTMLHeadElement> { let element = HTMLHeadElement::new_inherited(localName, document); Node::reflect_node(box element, document, HTMLHeadElementBinding::Wrap) } |