aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/dom/htmlheadelement.rs
diff options
context:
space:
mode:
authorCameron Zwarich <zwarich@mozilla.com>2014-09-19 19:28:32 -0700
committerCameron Zwarich <zwarich@mozilla.com>2014-09-19 19:28:32 -0700
commite9ad87e27eb30cfacd66b575e104ee2784f95591 (patch)
treeb70dbba4ac5f1dba5b59f7d9e13b812c91e2d198 /components/script/dom/htmlheadelement.rs
parent877de7f694dddd02fcc855a571f99e7c46f7501d (diff)
parent4fa872511117eafd934cad70c7d3b8c583fb960e (diff)
downloadservo-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.rs4
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)
}