aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/dom/htmlquoteelement.rs
diff options
context:
space:
mode:
Diffstat (limited to 'components/script/dom/htmlquoteelement.rs')
-rw-r--r--components/script/dom/htmlquoteelement.rs8
1 files changed, 4 insertions, 4 deletions
diff --git a/components/script/dom/htmlquoteelement.rs b/components/script/dom/htmlquoteelement.rs
index 81eb0d37864..d72f8dc67bd 100644
--- a/components/script/dom/htmlquoteelement.rs
+++ b/components/script/dom/htmlquoteelement.rs
@@ -16,20 +16,20 @@ pub struct HTMLQuoteElement {
}
impl HTMLQuoteElement {
- fn new_inherited(localName: Atom,
+ fn new_inherited(local_name: Atom,
prefix: Option<DOMString>,
document: &Document) -> HTMLQuoteElement {
HTMLQuoteElement {
htmlelement:
- HTMLElement::new_inherited(localName, prefix, document)
+ HTMLElement::new_inherited(local_name, prefix, document)
}
}
#[allow(unrooted_must_root)]
- pub fn new(localName: Atom,
+ pub fn new(local_name: Atom,
prefix: Option<DOMString>,
document: &Document) -> Root<HTMLQuoteElement> {
- Node::reflect_node(box HTMLQuoteElement::new_inherited(localName, prefix, document),
+ Node::reflect_node(box HTMLQuoteElement::new_inherited(local_name, prefix, document),
document,
HTMLQuoteElementBinding::Wrap)
}